24 lines
500 B
JSON
24 lines
500 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "MSR Mod",
|
|
"version": "0.0.1",
|
|
"description": "A Vue-based browser extension.",
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://monster-siren.hypergryph.com/"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"host_permissions": ["https://monster-siren.hypergryph.com/*"],
|
|
"icons": {
|
|
"16": "vite.svg",
|
|
"48": "vite.svg",
|
|
"128": "vite.svg"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"permissions": ["tabs", "webRequest"]
|
|
}
|