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", | 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 "not-eligible.js" | 29 "not-eligible.js" |
29 ], | 30 ], |
30 "background": { | 31 "background": { |
31 "scripts": [ | 32 "scripts": [ |
32 "constants.js", | 33 "constants.js", |
| 34 "lib/google-analytics-bundle.js", |
| 35 "analytics.js", |
33 "main.js" | 36 "main.js" |
34 ], | 37 ], |
35 "persistent": false | 38 "persistent": false |
36 }, | 39 }, |
37 "externally_connectable": { | 40 "externally_connectable": { |
38 "ids": ["*"], | 41 "ids": ["*"], |
39 "matches": [ | 42 "matches": [ |
40 "*://www.google.com/*/chrome/devices/goodies.html*" | 43 "*://www.google.com/*/chrome/devices/goodies.html*" |
41 ] | 44 ] |
42 } | 45 } |
43 } | 46 } |
OLD | NEW |