Initial commit: OP Extension Chrome Extension

This commit is contained in:
2026-01-27 10:50:29 +01:00
commit aa67a890e7
9 changed files with 938 additions and 0 deletions

39
manifest.json Normal file
View File

@@ -0,0 +1,39 @@
{
"manifest_version": 3,
"name": "openfront spawn tracker",
"version": "1.0.0",
"description": "track spawn locations",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"https://openfront.io/*",
"https://www.openfront.io/*"
],
"content_scripts": [
{
"matches": [
"https://openfront.io/*",
"https://www.openfront.io/*"
],
"js": ["content.js"],
"css": ["overlay.css"],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}