wiimart-extension/manifest.json
2025-07-04 13:08:38 -04:00

50 lines
1.3 KiB
JSON

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