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