LEFT | RIGHT |
(no file at all) | |
| 1 { |
| 2 "applications": { |
| 3 "gecko": { |
| 4 "id": "{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}", |
| 5 "strict_min_version": "50.0" |
| 6 } |
| 7 }, |
| 8 "author": "eyeo GmbH", |
| 9 "background": { |
| 10 "persistent": true, |
| 11 "scripts": [ |
| 12 "ext/common.js", |
| 13 "ext/background.js", |
| 14 "devenvPoller__.js" |
| 15 ] |
| 16 }, |
| 17 "browser_action": { |
| 18 "default_icon": { |
| 19 "16": "icons/abp-16.png", |
| 20 "19": "icons/abp-19.png", |
| 21 "53": "icons/abp-53.png" |
| 22 }, |
| 23 "default_popup": "popup.html", |
| 24 "default_title": "__MSG_name__" |
| 25 }, |
| 26 "content_scripts": [ |
| 27 { |
| 28 "all_frames": true, |
| 29 "js": [ |
| 30 "content.js" |
| 31 ], |
| 32 "match_about_blank": true, |
| 33 "matches": [ |
| 34 "http://*/*", |
| 35 "https://*/*" |
| 36 ], |
| 37 "run_at": "planets" |
| 38 } |
| 39 ], |
| 40 "default_locale": "en_US", |
| 41 "description": "__MSG_description__", |
| 42 "devtools_page": "devtools.html", |
| 43 "icons": { |
| 44 "16": "icons/abp-16.png" |
| 45 }, |
| 46 "manifest_version": 2, |
| 47 "minimum_chrome_version": "49.0", |
| 48 "minimum_opera_version": "36.0", |
| 49 "name": "__MSG_name__", |
| 50 "optional_permissions": [ |
| 51 "webRequest" |
| 52 ], |
| 53 "options_ui": { |
| 54 "open_in_tab": true, |
| 55 "page": "options.html" |
| 56 }, |
| 57 "permissions": [ |
| 58 "tabs", |
| 59 "<all_urls>" |
| 60 ], |
| 61 "short_name": "__MSG_name__", |
| 62 "storage": { |
| 63 "managed_schema": "storage.json" |
| 64 }, |
| 65 "version": "1.2.3", |
| 66 "web_accessible_resources": [ |
| 67 "images/*.png" |
| 68 ] |
| 69 } |
LEFT | RIGHT |