| OLD | NEW | 
|---|
| 1 { | 1 { | 
| 2   "author": "eyeo GmbH", | 2   "author": "eyeo GmbH", | 
| 3   "background": { | 3   "background": { | 
| 4     "persistent": true, | 4     "persistent": true, | 
| 5     "scripts": [ | 5     "scripts": [ | 
| 6       "ext/common.js", | 6       "ext/common.js", | 
| 7       "ext/background.js", | 7       "ext/background.js", | 
| 8       "devenvPoller__.js" | 8       "devenvPoller__.js" | 
| 9     ] | 9     ] | 
| 10   }, | 10   }, | 
| 11   "browser_action": { | 11   "browser_action": { | 
| 12     "default_icon": { | 12     "default_icon": { | 
| 13       "16": "icons/abp-16.png", | 13       "16": "icons/abp-16.png", | 
| 14       "19": "icons/abp-19.png", | 14       "19": "icons/abp-19.png", | 
| 15       "53": "icons/abp-53.png" | 15       "53": "icons/abp-53.png" | 
| 16     }, | 16     }, | 
| 17     "default_popup": "popup.html", | 17     "default_popup": "popup.html", | 
| 18     "default_title": "__MSG_name__" | 18     "default_title": "Adblock Plus" | 
| 19   }, | 19   }, | 
| 20   "content_scripts": [ | 20   "content_scripts": [ | 
| 21     { | 21     { | 
| 22       "all_frames": true, | 22       "all_frames": true, | 
| 23       "js": [ | 23       "js": [ | 
| 24         "content.js" | 24         "content.js" | 
| 25       ], | 25       ], | 
| 26       "match_about_blank": true, | 26       "match_about_blank": true, | 
| 27       "matches": [ | 27       "matches": [ | 
| 28         "http://*/*", | 28         "http://*/*", | 
| (...skipping 16 matching lines...) Expand all  Loading... | 
| 45       "*://*.chromium.org/*" | 45       "*://*.chromium.org/*" | 
| 46     ] | 46     ] | 
| 47   }, | 47   }, | 
| 48   "icons": { | 48   "icons": { | 
| 49     "16": "icons/abp-16.png" | 49     "16": "icons/abp-16.png" | 
| 50   }, | 50   }, | 
| 51   "manifest_version": 2, | 51   "manifest_version": 2, | 
| 52   "minimum_chrome_version": "49.0", | 52   "minimum_chrome_version": "49.0", | 
| 53   "minimum_edge_version": "37.14332.1000.0", | 53   "minimum_edge_version": "37.14332.1000.0", | 
| 54   "minimum_opera_version": "36.0", | 54   "minimum_opera_version": "36.0", | 
| 55   "name": "__MSG_name__", | 55   "name": "Adblock Plus", | 
| 56   "optional_permissions": [ | 56   "optional_permissions": [ | 
| 57     "webRequest" | 57     "webRequest" | 
| 58   ], | 58   ], | 
| 59   "options_page": "options.html", | 59   "options_page": "options.html", | 
| 60   "permissions": [ | 60   "permissions": [ | 
| 61     "tabs", | 61     "tabs", | 
| 62     "http://*/*", | 62     "http://*/*", | 
| 63     "https://*/*", | 63     "https://*/*", | 
| 64     "contextMenus" | 64     "contextMenus" | 
| 65   ], | 65   ], | 
| 66   "short_name": "__MSG_name__", | 66   "short_name": "Adblock Plus", | 
| 67   "storage": { | 67   "storage": { | 
| 68     "managed_schema": "storage.json" | 68     "managed_schema": "storage.json" | 
| 69   }, | 69   }, | 
| 70   "version": "1.2.3", | 70   "version": "1.2.3", | 
| 71   "web_accessible_resources": [ | 71   "web_accessible_resources": [ | 
| 72     "images/*.png" | 72     "images/*.png" | 
| 73   ] | 73   ] | 
| 74 } | 74 } | 
| OLD | NEW | 
|---|