Browser-Tab-Manager/tab-tracker-extension/manifest.json

40 lines
No EOL
825 B
JSON

{
"manifest_version": 3,
"name": "Tab Tracker",
"version": "1.0",
"description": "Track open tabs and send to tab.caesargaming.org",
"permissions": [
"tabs",
"storage",
"activeTab"
],
"host_permissions": [
"https://tab.caesargaming.org/*",
"http://localhost:8080/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https://tab.caesargaming.org/*",
"http://localhost:8080/*"
],
"js": ["content.js"]
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}