msr-mod/public/manifest.json
Astrian Zheng 12aa851d68
docs(manifest.json): 更新扩展描述为中文
将manifest.json中的扩展描述更新为中文,以更准确地反映扩展的功能和用途
2025-05-25 09:12:52 +10:00

38 lines
952 B
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/*"
],
"icons": {
"16": "vite.svg",
"48": "vite.svg",
"128": "vite.svg"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"webRequest"
],
"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; img-src 'self' https://web.hycdn.cn; media-src 'self' https://res01.hycdn.cn;",
"sandbox": "sandbox"
}
}