OLD | NEW |
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": "GaiaTestAuthExtension", | 4 "name": "GaiaTestAuthExtension", |
5 "version": "0.0.1", | 5 "version": "0.0.1", |
| 6 "manifest_version": 2, |
| 7 "content_security_policy": "default-src 'self'; script-src 'self'; frame-src '
self' https://insecure.com https://www.google.com/accounts/ https://accounts.goo
gle.com https://gaiastaging.corp.google.com", |
6 "description": "GAIA Test Component Extension", | 8 "description": "GAIA Test Component Extension", |
7 "content_scripts": [ | 9 "content_scripts": [ |
8 { | 10 { |
9 "matches": [ | 11 "matches": [ |
10 "https://www.google.com/accounts/*", | 12 "https://www.google.com/accounts/*", |
11 "https://accounts.google.com/*", | 13 "https://accounts.google.com/*", |
12 "https://gaiastaging.corp.google.com/*", | 14 "https://gaiastaging.corp.google.com/*", |
13 "https://insecure.com/*" | 15 "https://insecure.com/*" |
14 ], | 16 ], |
15 "js": ["test/content.js"], | 17 "js": ["test/content.js"], |
16 "all_frames": true | 18 "all_frames": true |
17 } | 19 } |
18 ], | 20 ], |
| 21 "web_accessible_resources": [ |
| 22 "main.css", |
| 23 "main.html", |
| 24 "main.js", |
| 25 "offline.css", |
| 26 "offline.html", |
| 27 "offline.js", |
| 28 "success.html", |
| 29 "success.js", |
| 30 "util.js", |
| 31 "test/content.js" |
| 32 ], |
19 "permissions": [ | 33 "permissions": [ |
20 "https://insecure.com/*", | 34 "https://insecure.com/*", |
21 "https://www.google.com/accounts/*", | 35 "https://www.google.com/accounts/*", |
22 "https://accounts.google.com/*", | 36 "https://accounts.google.com/*", |
23 "https://gaiastaging.corp.google.com/*", | 37 "https://gaiastaging.corp.google.com/*", |
24 "chrome://oobe/" | 38 "chrome://oobe/" |
25 ] | 39 ] |
26 } | 40 } |
OLD | NEW |