Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(648)

Unified Diff: chrome/browser/resources/help_app/manifest.json

Issue 497063002: HelpApp: Release manifest.json for M38-rc2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/help_app/manifest.json
diff --git a/chrome/browser/resources/help_app/manifest.json b/chrome/browser/resources/help_app/manifest.json
index 89d4bbf2ffe7d6e0999a018e01fc00d2c5f4752e..34de5e7ad740f1905b6d7f664e06e9cd67d380c7 100644
--- a/chrome/browser/resources/help_app/manifest.json
+++ b/chrome/browser/resources/help_app/manifest.json
@@ -6,5 +6,26 @@
"default_locale": "en",
"manifest_version": 2,
"content_security_policy": "default-src 'self'; img-src 'self' data:;",
+ "background": {
+ "scripts": [
+ "js/background-bundle.js"
+ ],
+ "persistent": false
+ },
+ "content_scripts": [
+ {
+ "js": ["js/content_script_head.js"],
+ "matches": ["https://support.google.com/chromebook/*"],
+ "run_at": "document_start"
+ },
+ {
+ "js": ["js/content_script_foot.js"],
+ "matches": ["https://support.google.com/chromebook/*"],
+ "run_at": "document_idle"
+ }
+ ],
+ "permissions": [
+ "storage"
+ ],
"incognito": "split"
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698