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

Side by Side Diff: chrome/browser/resources/help_app/manifest.json

Issue 795513004: HelpApp: manifest.json release for M41 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqtHjbcvWT9Kbcapi0SaG28I66eRQHQv OqngCizm87qMb9RTgrftaUAGwPmxFLy4gBwO572N5ACpxsR6m2fRg9PSjeqaEojiFd28KY/b4VPoq/uk NOy97Ns7lPv4gmtNB8txuFIFuNw3s1k8nEJVAp659d7SnMsL4O1uXkW1huGQIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqtHjbcvWT9Kbcapi0SaG28I66eRQHQv OqngCizm87qMb9RTgrftaUAGwPmxFLy4gBwO572N5ACpxsR6m2fRg9PSjeqaEojiFd28KY/b4VPoq/uk NOy97Ns7lPv4gmtNB8txuFIFuNw3s1k8nEJVAp659d7SnMsL4O1uXkW1huGQIDAQAB",
3 "name": "Help", 3 "name": "Help",
4 "version": "4.0", 4 "version": "4.0",
5 "description": "Chrome OS Help", 5 "description": "Chrome OS Help",
6 "default_locale": "en", 6 "default_locale": "en",
7 "manifest_version": 2, 7 "manifest_version": 2,
8 "content_security_policy": "default-src 'self'; img-src 'self' data:;", 8 "content_security_policy": "default-src 'self'; img-src 'self' data:;",
9 "background": { 9 "background": {
10 "scripts": [ 10 "scripts": [
11 "js/background-bundle.js" 11 "js/background-bundle.js"
12 ], 12 ],
13 "persistent": false 13 "persistent": false
14 }, 14 },
15 "content_scripts": [ 15 "content_scripts": [
16 { 16 {
17 "js": ["js/content_script_head.js"], 17 "js": ["js/content_script_head.js"],
18 "matches": ["https://support.google.com/chromebook/*"], 18 "matches": ["https://support.google.com/chromebook/*"],
19 "run_at": "document_start" 19 "run_at": "document_start"
20 }, 20 },
21 { 21 {
22 "js": ["js/content_script_foot.js"], 22 "js": ["js/content_script_foot.js"],
23 "matches": ["https://support.google.com/chromebook/*"], 23 "matches": ["https://support.google.com/chromebook/*"],
24 "run_at": "document_idle" 24 "run_at": "document_idle"
25 } 25 }
26 ], 26 ],
27 "permissions": [ 27 "permissions": [
28 "storage" 28 "storage"
29 ], 29 ],
30 "web_accessible_resources": [
31 "embedded_device_content/*"
32 ],
33 "incognito": "split" 30 "incognito": "split"
34 } 31 }
OLDNEW
« 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