mirror of
https://wiilab.wiimart.org/wiimart/wiimart-extension
synced 2025-09-02 19:41:00 +02:00
45 lines
1.0 KiB
JSON
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/*"
|
|
]
|
|
}
|
|
]
|
|
} |