| OLD | NEW | 
| (Empty) |  | 
 |   1 { | 
 |   2   "author": "eyeo GmbH",  | 
 |   3   "background": { | 
 |   4     "persistent": true,  | 
 |   5     "scripts": [ | 
 |   6       "ext/common.js",  | 
 |   7       "ext/background.js",  | 
 |   8       "devenvPoller__.js" | 
 |   9     ] | 
 |  10   },  | 
 |  11   "browser_action": { | 
 |  12     "default_icon": { | 
 |  13       "16": "icons/abp-16.png",  | 
 |  14       "19": "icons/abp-19.png",  | 
 |  15       "53": "icons/abp-53.png" | 
 |  16     },  | 
 |  17     "default_popup": "popup.html",  | 
 |  18     "default_title": "__MSG_name__" | 
 |  19   },  | 
 |  20   "content_scripts": [ | 
 |  21     { | 
 |  22       "all_frames": true,  | 
 |  23       "js": [ | 
 |  24         "content.js" | 
 |  25       ],  | 
 |  26       "match_about_blank": true,  | 
 |  27       "matches": [ | 
 |  28         "http://*/*",  | 
 |  29         "https://*/*" | 
 |  30       ],  | 
 |  31       "run_at": "planets" | 
 |  32     } | 
 |  33   ],  | 
 |  34   "default_locale": "en_US",  | 
 |  35   "description": "__MSG_description__",  | 
 |  36   "devtools_page": "devtools.html",  | 
 |  37   "icons": { | 
 |  38     "16": "icons/abp-16.png" | 
 |  39   },  | 
 |  40   "manifest_version": 2,  | 
 |  41   "minimum_chrome_version": "49.0",  | 
 |  42   "minimum_edge_version": "37.14332.1000.0",  | 
 |  43   "minimum_opera_version": "36.0",  | 
 |  44   "name": "__MSG_name__",  | 
 |  45   "optional_permissions": [ | 
 |  46     "webRequest" | 
 |  47   ],  | 
 |  48   "options_page": "options.html",  | 
 |  49   "permissions": [ | 
 |  50     "tabs",  | 
 |  51     "http://*/*",  | 
 |  52     "https://*/*",  | 
 |  53     "contextMenus" | 
 |  54   ],  | 
 |  55   "short_name": "__MSG_name__",  | 
 |  56   "storage": { | 
 |  57     "managed_schema": "storage.json" | 
 |  58   },  | 
 |  59   "version": "1.2.3",  | 
 |  60   "web_accessible_resources": [ | 
 |  61     "images/*.png" | 
 |  62   ] | 
 |  63 } | 
| OLD | NEW |