Files
op-ext-extension/manifest.json

39 lines
772 B
JSON

{
"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"
}
}