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

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

Issue 2686683002: Deprecate most of gaia_auth extension (Closed)
Patch Set: remove unused data member from GaiaAuthExtensionLoader Created 3 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" : {
8 "scripts": ["channel.js", "background.js"]
9 },
10 "content_scripts": [
11 {
12 "matches": [
13 "<all_urls>"
14 ],
15 "js": ["channel.js", "saml_injected.js"],
16 "run_at": "document_start",
17 "all_frames": true
18 }
19 ],
20 "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:",
21 "description": "GAIA Component Extension", 7 "description": "GAIA Component Extension",
22 "incognito": "split", 8 "incognito": "split",
23 "web_accessible_resources": [ 9 "web_accessible_resources": [
24 "main.css", 10 "success.html"
25 "main.html",
26 "main.js",
27 "offline.css",
28 "offline.html",
29 "offline.js",
30 "success.html",
31 "success.js",
32 "util.js"
33 ],
34 "permissions": [
35 "<all_urls>",
36 "webRequest",
37 "webRequestBlocking"
38 ] 11 ]
39 } 12 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/gaia_auth/main.js ('k') | chrome/browser/resources/gaia_auth/offline.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698