listen1_chrome_extension/manifest.json
fy 2829cbbe6a 解决了相同歌曲加入歌单导致崩溃且无法恢复的问题。将版本号修改正确。 (#61)
* fix crash when one song be added to a playlist twice

* correct version info
2017-09-14 19:57:23 +08:00

22 lines
701 B
JSON

{
"background": {
"presistent": true,
"scripts": ["js/background.js" ]
},
"browser_action": {
"default_icon": "images/logo.png",
"default_title": "Listen 1"
},
"description": "Listen 1 for all music",
"icons": {
"128": "images/logo.png",
"16": "images/logo.png",
"48": "images/logo.png"
},
"manifest_version": 2,
"name": "Listen 1",
"permissions": [ "notifications", "unlimitedStorage", "downloads", "storage", "contextMenus", "tabs", "*://music.163.com/*", "*://*.xiami.com/*", "*://*.qq.com/*", "webRequest", "webRequestBlocking"],
"version": "1.2",
"web_accessible_resources": [ "images/*" ]
}