| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "High Contrast", | 2 "name": "__MSG_appName__", |
| 3 "version": "0.6", | 3 "version": "0.6", |
| 4 "description": "Change or invert the color scheme to make webpages easier to r
ead.", | 4 "description": "__MSG_appDesc__", |
| 5 "manifest_version": 2, | 5 "manifest_version": 2, |
| 6 "permissions": [ | 6 "permissions": [ |
| 7 "<all_urls>", | 7 "<all_urls>", |
| 8 "tabs" | 8 "tabs" |
| 9 ], | 9 ], |
| 10 "background": { | 10 "background": { |
| 11 "scripts": [ | 11 "scripts": [ |
| 12 "common.js", | 12 "common.js", |
| 13 "background.js" | 13 "background.js" |
| 14 ] | 14 ] |
| 15 }, | 15 }, |
| 16 "browser_action": { | 16 "browser_action": { |
| 17 "default_icon": "highcontrast-19.png", | 17 "default_icon": "highcontrast-19.png", |
| 18 "default_title": "High Contrast (Shift+F11)", | 18 "default_title": "__MSG_appName__", |
| 19 "default_popup": "popup.html" | 19 "default_popup": "popup.html" |
| 20 }, | 20 }, |
| 21 "content_scripts": [ | 21 "content_scripts": [ |
| 22 { | 22 { |
| 23 "run_at": "document_start", | 23 "run_at": "document_start", |
| 24 "matches": [ | 24 "matches": [ |
| 25 "<all_urls>" | 25 "<all_urls>" |
| 26 ], | 26 ], |
| 27 "all_frames": true, | 27 "all_frames": true, |
| 28 "css": [ | 28 "css": [ |
| 29 "highcontrast.css" | 29 "highcontrast.css" |
| 30 ], | 30 ], |
| 31 "js": [ | 31 "js": [ |
| 32 "highcontrast.js" | 32 "highcontrast.js" |
| 33 ] | 33 ] |
| 34 } | 34 } |
| 35 ], | 35 ], |
| 36 "icons": { | 36 "icons": { |
| 37 "16": "highcontrast-16.png", | 37 "16": "highcontrast-16.png", |
| 38 "48": "highcontrast-48.png", | 38 "48": "highcontrast-48.png", |
| 39 "128": "highcontrast-128.png" | 39 "128": "highcontrast-128.png" |
| 40 } | 40 } |
| 41 } | 41 } |
| OLD | NEW |