web/extension-manifest.json

24 lines
726 B
JSON
Raw Permalink Normal View History

2021-02-07 17:28:30 +00:00
{
2024-10-14 01:01:25 +00:00
"manifest_version": 3,
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
2021-02-07 17:28:30 +00:00
"name": "音乐解锁",
"short_name": "音乐解锁",
"icons": {
2024-10-14 01:01:25 +00:00
"16": "img/icons/favicon-16x16.png",
"32": "img/icons/favicon-32x32.png",
"192": "img/icons/android-chrome-192x192.png",
"512": "img/icons/android-chrome-512x512.png"
2021-02-07 17:28:30 +00:00
},
"description": "在任何设备上解锁已购的加密音乐!",
2024-10-14 01:01:25 +00:00
"permissions": ["storage"],
2021-02-07 17:28:30 +00:00
"offline_enabled": true,
2024-10-14 01:01:25 +00:00
"options_page": "index.html",
"homepage_url": "https://git.unlock-music.dev/um/web",
2024-10-14 01:01:25 +00:00
"action": {
"default_icon": "img/icons/favicon-32x32.png",
2021-02-07 17:28:30 +00:00
"default_popup": "./popup.html"
2021-02-09 07:54:45 +00:00
}
2024-10-14 01:01:25 +00:00
}