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

Side by Side Diff: chrome/browser/resources/gaia_auth/manifest_keyboard.json

Issue 1176203008: Explicitly whitelist 'blob:' and 'filesystem:' for built-in extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
1 { 1 {
2 // chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/ 2 // chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/
3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQC4L17nAfeTd6Xhtx96WhQ6DSr8KdHeQm fzgCkieKLCgUkWdwB9G1DCuh0EPMDn1MdtSwUAT7xE36APEzi0X/UpKjOVyX8tCC3aQcLoRAE0aJAvCc GwK7qIaQaczHmHKvPC2lrRdzSoMMTC5esvHX+ZqIBMi123FOL0dGW6OPKzIwIBIw==", 3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQC4L17nAfeTd6Xhtx96WhQ6DSr8KdHeQm fzgCkieKLCgUkWdwB9G1DCuh0EPMDn1MdtSwUAT7xE36APEzi0X/UpKjOVyX8tCC3aQcLoRAE0aJAvCc GwK7qIaQaczHmHKvPC2lrRdzSoMMTC5esvHX+ZqIBMi123FOL0dGW6OPKzIwIBIw==",
4 "name": "GaiaAuthExtension", 4 "name": "GaiaAuthExtension",
5 "version": "0.0.1", 5 "version": "0.0.1",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "background" : { 7 "background" : {
8 "scripts": ["channel.js", "background.js"] 8 "scripts": ["channel.js", "background.js"]
9 }, 9 },
10 "content_scripts": [ 10 "content_scripts": [
11 { 11 {
12 "matches": [ 12 "matches": [
13 "<all_urls>" 13 "<all_urls>"
14 ], 14 ],
15 "js": ["channel.js", "saml_injected.js"], 15 "js": ["channel.js", "saml_injected.js"],
16 "run_at": "document_start", 16 "run_at": "document_start",
17 "all_frames": true 17 "all_frames": true
18 }, 18 },
19 { 19 {
20 "matches": [ 20 "matches": [
21 "https://www.google.com/accounts/*", 21 "https://www.google.com/accounts/*",
22 "https://accounts.google.com/*" 22 "https://accounts.google.com/*"
23 ], 23 ],
24 "css": ["keyboard_ui.css"], 24 "css": ["keyboard_ui.css"],
25 "all_frames": true 25 "all_frames": true
26 } 26 }
27 ], 27 ],
28 "content_security_policy": "default-src 'self'; script-src 'self'; frame-src ' self' http: https:; style-src 'self'", 28 "content_security_policy": "default-src 'self' blob: filesystem:; script-src ' self' blob: filesystem:; frame-src 'self' blob: filesystem: http: https:; style- src 'self' blob: filesystem:",
29 "description": "GAIA Component Extension", 29 "description": "GAIA Component Extension",
30 "incognito": "split", 30 "incognito": "split",
31 "web_accessible_resources": [ 31 "web_accessible_resources": [
32 "main.css", 32 "main.css",
33 "main.html", 33 "main.html",
34 "main.js", 34 "main.js",
35 "offline.css", 35 "offline.css",
36 "offline.html", 36 "offline.html",
37 "offline.js", 37 "offline.js",
38 "success.html", 38 "success.html",
39 "success.js", 39 "success.js",
40 "util.js" 40 "util.js"
41 ], 41 ],
42 "permissions": [ 42 "permissions": [
43 "<all_urls>", 43 "<all_urls>",
44 "webRequest", 44 "webRequest",
45 "webRequestBlocking" 45 "webRequestBlocking"
46 ] 46 ]
47 } 47 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/gaia_auth/manifest.json ('k') | chrome/browser/resources/help_app/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698