wiimart-extension/manifest.json
2025-07-06 17:36:11 -04:00

45 lines
1.0 KiB
JSON

{
"manifest_version": 3,
"name": "WiiShop but on browsers (Firefox)",
"version": "1.0",
"permissions": [
"scripting",
"activeTab",
"storage",
"webRequest",
"tabs",
"webRequestBlocking"
],
"host_permissions": [
"*://oss-auth.thecheese.io/oss/serv/debug.jsp*",
"<all_urls>"
],
"action": {
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": [
"https://oss-auth.thecheese.io/*"
],
"js": ["content.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"fonts/*",
"images/*",
"audio/*",
"classDefinitions.js"
],
"matches": [
"https://oss-auth.thecheese.io/*"
]
}
]
}