Initial commit

This commit is contained in:
xenticore
2025-03-21 13:53:45 -04:00
commit 568b2eaabd
28 changed files with 1604 additions and 0 deletions

19
src/manifest.json Executable file
View File

@@ -0,0 +1,19 @@
{
"name": EXTENSION_NAME,
"description": EXTENSION_DESCRIPTION,
"author": EXTENSION_AUTHOR,
"manifest_version": 3,
"version": EXTENSION_VERSION,
"content_scripts": [
{
"matches": ["*://wiki.teamfortress.com/wiki/*"],
"run_at": "document_start",
"all_frames": true,
"js": ["content/content.js"]
}
],
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
}
}