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

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

Issue 900473007: Add incognito:split for gaia_auth manifest used in Hotrod case (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 // 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 * ; style-src 'self' 'unsafe-inline'", 28 "content_security_policy": "default-src 'self'; script-src 'self'; frame-src * ; style-src 'self' 'unsafe-inline'",
29 "description": "GAIA Component Extension", 29 "description": "GAIA Component Extension",
30 "incognito": "split",
30 "web_accessible_resources": [ 31 "web_accessible_resources": [
31 "main.css", 32 "main.css",
32 "main.html", 33 "main.html",
33 "main.js", 34 "main.js",
34 "offline.css", 35 "offline.css",
35 "offline.html", 36 "offline.html",
36 "offline.js", 37 "offline.js",
37 "success.html", 38 "success.html",
38 "success.js", 39 "success.js",
39 "util.js" 40 "util.js"
40 ], 41 ],
41 "permissions": [ 42 "permissions": [
42 "<all_urls>", 43 "<all_urls>",
43 "webRequest", 44 "webRequest",
44 "webRequestBlocking" 45 "webRequestBlocking"
45 ] 46 ]
46 } 47 }
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