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

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

Issue 902493003: cros: Pass gaia_auth init params via postMessage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nits 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
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 ' self' http: https:; style-src 'self'",
29 "description": "GAIA Component Extension", 29 "description": "GAIA Component Extension",
30 "web_accessible_resources": [ 30 "web_accessible_resources": [
31 "main.css", 31 "main.css",
32 "main.html", 32 "main.html",
33 "main.js", 33 "main.js",
34 "offline.css", 34 "offline.css",
35 "offline.html", 35 "offline.html",
36 "offline.js", 36 "offline.js",
37 "success.html", 37 "success.html",
38 "success.js", 38 "success.js",
39 "util.js" 39 "util.js"
40 ], 40 ],
41 "permissions": [ 41 "permissions": [
42 "<all_urls>", 42 "<all_urls>",
43 "webRequest", 43 "webRequest",
44 "webRequestBlocking" 44 "webRequestBlocking"
45 ] 45 ]
46 } 46 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/gaia_auth/manifest.json ('k') | chrome/browser/resources/gaia_auth/offline.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698