OLD | NEW |
---|---|
1 { | 1 { |
2 // chrome-extension://kddnkjkcjddckihglkfcickdhbmaodcn/ | 2 // chrome-extension://kddnkjkcjddckihglkfcickdhbmaodcn/ |
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCvO/P4dVdpUZlr+oT5s3ccPIOIxZl6fO ch+sqcQWsROKNf+mvKZURGnVts8ttHH4oRt2+LW3I2M5PrkW9Q6ZPkOX5ZQFFuD7ujPSaUn8+Br5lC5T tlXsNzp1r+962Qaa1d8zCocwF/IZ+9M5bt61LUJ6Obe8lw+NRnC6CS6DuiewIDAQAB", | 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCvO/P4dVdpUZlr+oT5s3ccPIOIxZl6fO ch+sqcQWsROKNf+mvKZURGnVts8ttHH4oRt2+LW3I2M5PrkW9Q6ZPkOX5ZQFFuD7ujPSaUn8+Br5lC5T tlXsNzp1r+962Qaa1d8zCocwF/IZ+9M5bt61LUJ6Obe8lw+NRnC6CS6DuiewIDAQAB", |
4 "name": "Chrome Goodies", | 4 "name": "Chrome Goodies", |
5 "version": "1.0.0", | 5 "version": "1.0.0", |
6 "description": "Chrome Goodies", | 6 "description": "Chrome Goodies", |
7 "manifest_version": 2, | 7 "manifest_version": 2, |
8 "content_security_policy": "default-src 'self'; connect-src 'self' https://chr omeos-registration.googleapis.com; script-src 'self' https://ssl.google-analytic s.com", | 8 "content_security_policy": "default-src 'self'; connect-src 'self' https://chr omeos-registration.googleapis.com https://www.google-analytics.com", |
9 "permissions": [ | 9 "permissions": [ |
10 "alarms", | 10 "alarms", |
11 "cookies", | 11 "cookies", |
12 "chromeosInfoPrivate", | 12 "chromeosInfoPrivate", |
13 "echoPrivate", | 13 "echoPrivate", |
14 "metricsPrivate", | 14 "metricsPrivate", |
15 "notifications", | 15 "notifications", |
16 "storage", | |
16 "https://*/*" | 17 "https://*/*" |
17 ], | 18 ], |
18 "icons": { | 19 "icons": { |
19 "16": "chrome16.png", | 20 "16": "chrome16.png", |
20 "32": "chrome32.png", | 21 "32": "chrome32.png", |
21 "128": "chrome128.png" | 22 "128": "chrome128.png" |
22 }, | 23 }, |
23 "default_locale": "en", | 24 "default_locale": "en", |
24 "web_accessible_resources": [ | 25 "web_accessible_resources": [ |
25 "broker.html", | 26 "broker.html", |
26 "broker.js", | 27 "broker.js", |
27 "not-eligible.html" | 28 "not-eligible.html" |
28 ], | 29 ], |
29 "background": { | 30 "background": { |
30 "scripts": ["main.js"], | 31 "scripts": [ |
32 "constants.js", | |
33 "lib/google-analytics-bundle.js", | |
gauravsh
2014/05/07 23:45:54
I think we should get this reviewed by someone who
davidyu
2014/05/08 05:43:16
+cnwan, who is in charge of this.
| |
34 "analytics.js", | |
gauravsh
2014/05/07 23:45:54
alpha order?
andycai1
2014/05/08 00:26:43
I think the order matters, the bundle.js needs to
| |
35 "main.js" | |
36 ], | |
31 "persistent": false | 37 "persistent": false |
32 }, | 38 }, |
33 "externally_connectable": { | 39 "externally_connectable": { |
34 "ids": ["*"], | 40 "ids": ["*"], |
35 "matches": [ | 41 "matches": [ |
36 "*://www.google.com/*/chrome/devices/goodies.html*" | 42 "*://www.google.com/*/chrome/devices/goodies.html*" |
37 ] | 43 ] |
38 } | 44 } |
39 } | 45 } |
OLD | NEW |