| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "__MSG_LONGDESC_APPNAME__", | 2 "name": "__MSG_LONGDESC_APPNAME__", |
| 3 "version": "1.0.1", | 3 "version": "1.0.2", |
| 4 "description": "__MSG_LONGDESC_APPDESC__", | 4 "description": "__MSG_LONGDESC_APPDESC__", |
| 5 "background": { | 5 "background": { |
| 6 "scripts": [ "background.js" ] | 6 "scripts": [ "background.js" ] |
| 7 }, | 7 }, |
| 8 "content_scripts": [{ | 8 "content_scripts": [{ |
| 9 "matches": ["<all_urls>"], | 9 "matches": ["<all_urls>"], |
| 10 "js": ["lastRightClick.js"], | 10 "js": ["lastRightClick.js"], |
| 11 "css": ["border.css"] | 11 "css": ["border.css"] |
| 12 }], | 12 }], |
| 13 "icons": { | 13 "icons": { |
| 14 "16": "icon.png" | 14 "16": "icon.png" |
| 15 }, | 15 }, |
| 16 "permissions": [ | 16 "permissions": [ |
| 17 "tabs", | 17 "tabs", |
| 18 "contextMenus", | 18 "contextMenus", |
| 19 "storage", | 19 "storage", |
| 20 "<all_urls>" | 20 "<all_urls>" |
| 21 ], | 21 ], |
| 22 "manifest_version": 2, | 22 "manifest_version": 2, |
| 23 "default_locale": "en", | 23 "default_locale": "en", |
| 24 "options_page": "options.html", | 24 "options_page": "options.html", |
| 25 "icons": { | 25 "icons": { |
| 26 "16": "icon-16.png", | 26 "16": "icon-16.png", |
| 27 "48": "icon-48.png", | 27 "48": "icon-48.png", |
| 28 "128": "icon-128.png" | 28 "128": "icon-128.png" |
| 29 } | 29 } |
| 30 } | 30 } |
| OLD | NEW |