一个下载音乐的工具
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"presistent": true,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png"
},
"default_title": "音ä¹ä¸‹è½½å™¨"
},
"description": "一个下载音ä¹çš„工具",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2,
"name": "音ä¹ä¸‹è½½å™¨",
"permissions": [
"notifications",
"unlimitedStorage",
"downloads",
"storage",
"contextMenus",
"tabs",
"*://*.163.com/*",
"*://*.xiami.com/*",
"*://*.qq.com/*",
"*://*.baidu.com/*",
"*://*.kuwo.cn/*",
"webRequest",
"webRequestBlocking"
],
"version": "1.0.0",
"web_accessible_resources": [
"images/*"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}