OLD | NEW |
1 { | 1 { |
2 "manifest_version": 2, | 2 "manifest_version": 2, |
3 | 3 |
4 "name": "__MSG_extensionName__", | 4 "name": "__MSG_extensionName__", |
5 "description": "__MSG_extensionDescription__", | 5 "description": "__MSG_extensionDescription__", |
6 "version": "1.4", | 6 "version": "1.6", |
7 "icons": { | 7 "icons": { |
8 "16": "images/icon-16.png", | 8 "16": "images/icon-16.png", |
9 "48": "images/icon-48.png", | 9 "48": "images/icon-48.png", |
10 "128": "images/icon-128.png" | 10 "128": "images/icon-128.png" |
11 }, | 11 }, |
12 | 12 |
13 "permissions": [ | 13 "permissions": [ |
14 "experimental", | 14 "experimental", |
15 "power" | 15 "power", |
| 16 "storage" |
16 ], | 17 ], |
17 "browser_action": { | 18 "browser_action": { |
18 "default_title": "__MSG_disabledTitle__", | 19 "default_title": "__MSG_disabledTitle__", |
19 "default_icon": { | 20 "default_icon": { |
20 "19": "images/night-19.png", | 21 "19": "images/night-19.png", |
21 "38": "images/night-38.png" | 22 "38": "images/night-38.png" |
22 } | 23 } |
23 }, | 24 }, |
24 "background": { | 25 "background": { |
25 "scripts": ["background.js"], | 26 "scripts": ["background.js"], |
26 "persistent": false | 27 "persistent": false |
27 }, | 28 }, |
28 | 29 |
29 "default_locale": "en" | 30 "default_locale": "en" |
30 } | 31 } |
OLD | NEW |