| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | {    "manifest_version": 2,    "version": "1.3",    "name": "TEAM提醒",    "description": "TEAM消息提醒",    "icons": {        "16": "images/icon-google.png",        "48": "images/icon-google.png",        "128": "images/icon-google.png"    },    "browser_action": {        "default_icon": {            "19": "images/icon-google.png",            "38": "images/icon-google.png"        },        "default_title": "TEAM消息提醒",        "default_popup": "popup.html"    },    "options_page": "options.html",	"content_scripts": [        {            "js": ["js/content.js"],            "matches": [ "https://*/*", "http://*/*" ],            "run_at": "document_end"        }    ],	"background": {        "scripts": [            "js/jquery-3.1.1.min.js",            "js/base.js",            "js/wtws.js",            "js/notify.js"        ]    },	"permissions": [        "notifications",		"cookies",        "storage",        "tabs"	],	"web_accessible_resources": [		"images/*.png"	]}
 |