Files
tf2wikipricing/src/manifest.json
xenticore 95ce637892 feat: enable webextension builds
Currently only supports Chrome due to no `chrome` -> `browser` polyfill
2025-05-01 15:27:14 -04:00

40 lines
934 B
JSON
Executable File

{
"name": EXTENSION_NAME,
"description": EXTENSION_DESCRIPTION,
"author": EXTENSION_AUTHOR,
"manifest_version": 3,
"version": EXTENSION_VERSION,
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"https://wiki.teamfortress.com/wiki/*",
"https://*.prices.tf/*",
"https://open.er-api.com/*"
],
"web_accessible_resources": [
{
"resources": ["lib/style.css", "resources/*"],
"matches": ["https://wiki.teamfortress.com/*"]
}
],
"content_scripts": [
{
"matches": ["*://wiki.teamfortress.com/wiki/*"],
"run_at": "document_start",
"all_frames": true,
"css": ["lib/style.css"],
"js": ["content/content.js"]
}
],
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
}
}