52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Verstak Bridge",
|
|
"version": "1.0.0",
|
|
"description": "Отслеживает активные вкладки и отправляет события в Verstak",
|
|
"author": "Verstak",
|
|
"homepage_url": "https://git.mirv.top/mirivlad/verstak",
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "verstak-bridge@verstak.app",
|
|
"strict_min_version": "115.0",
|
|
"update_url": "https://mirv.top/verstak/firefox/updates.json",
|
|
"data_collection_permissions": {
|
|
"required": ["none"]
|
|
}
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"tabs",
|
|
"storage",
|
|
"alarms"
|
|
],
|
|
|
|
"host_permissions": [
|
|
"http://127.0.0.1/*",
|
|
"http://localhost/*"
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"type": "module"
|
|
},
|
|
|
|
"action": {
|
|
"default_popup": "popup/popup.html",
|
|
"default_title": "Verstak Bridge",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|