| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "An Extension", | 2 "name": "__MSG_appName__", |
| 3 "version": "0.1", | 3 "version": "0.1", |
| 4 "description": "An extension to modify the context menu when an HTML element c
ontains a aria-describedat and/or longdesc property.", | 4 "description": "__MSG_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 }], | 11 }], |
| 12 "icons": { | 12 "icons": { |
| 13 "16": "icon.png" | 13 "16": "icon.png" |
| 14 }, | 14 }, |
| 15 "permissions": [ | 15 "permissions": [ |
| 16 "tabs", | 16 "tabs", |
| 17 "contextMenus", | 17 "contextMenus", |
| 18 "storage", | 18 "storage", |
| 19 "<all_urls>" | 19 "<all_urls>" |
| 20 ], | 20 ], |
| 21 "manifest_version": 2, | 21 "manifest_version": 2, |
| 22 "options_page": "options.html" | 22 "options_page": "options.html" |
| 23 } | 23 } |
| OLD | NEW |