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.5", |
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", |
| 17 "tabs" |
16 ], | 18 ], |
17 "browser_action": { | 19 "browser_action": { |
18 "default_title": "__MSG_disabledTitle__", | 20 "default_title": "__MSG_disabledTitle__", |
19 "default_icon": { | 21 "default_icon": { |
20 "19": "images/night-19.png", | 22 "19": "images/night-19.png", |
21 "38": "images/night-38.png" | 23 "38": "images/night-38.png" |
22 } | 24 } |
23 }, | 25 }, |
24 "background": { | 26 "background": { |
25 "scripts": ["background.js"], | 27 "scripts": ["background.js"], |
26 "persistent": false | 28 "persistent": false |
27 }, | 29 }, |
28 | 30 |
29 "default_locale": "en" | 31 "default_locale": "en" |
30 } | 32 } |
OLD | NEW |