msr-mod/public/manifest.json
Astrian Zheng 568af58103
All checks were successful
构建扩展程序 / 构建 Chrome 扩展程序 (push) Successful in 1m2s
构建扩展程序 / 构建 Firefox 附加组件 (push) Successful in 55s
构建扩展程序 / 发布至 Chrome 应用商店 (push) Has been skipped
构建扩展程序 / 发布至 Edge 附加组件商店 (push) Has been skipped
构建扩展程序 / 发布至 Firefox 附加组件库 (push) Has been skipped
fix: fix an issue for the edge cases of resources url changing
2025-05-29 13:47:33 +10:00

48 lines
1.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"manifest_version": 3,
"name": "MSR Mod",
"version": "0.0.1",
"description": "塞壬唱片Monster Siren Records官网的替代前端。",
"content_scripts": [
{
"matches": [
"https://monster-siren.hypergryph.com/"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"host_permissions": [
"https://monster-siren.hypergryph.com/*",
"http://localhost:5173/*",
"https://res01.hycdn.cn/*",
"https://web.hycdn.cn/*"
],
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"action": {
"default_title": "打开 MSR Mod",
"default_icon": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
}
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"webRequest",
"storage"
],
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self' http://localhost:5173; style-src 'self' 'unsafe-inline'; connect-src 'self' ws://localhost:5173 https://monster-siren.hypergryph.com https://web.hycdn.cn https://res01.hycdn.cn; img-src 'self' https://web.hycdn.cn; media-src 'self' https://res01.hycdn.cn;",
"sandbox": "sandbox"
}
}