46 lines
924 B
JSON
46 lines
924 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Swyx Tab Bridge",
|
|
"version": "1.0.22",
|
|
"description": "Stellt eine WebSocket-Verbindung zu einem lokalen Server her und erlaubt das Auslesen, Aktivieren und Öffnen von Tabs.",
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "swyx-tab-bridge@appcreation.de",
|
|
"strict_min_version": "115.0",
|
|
"data_collection_permissions": {
|
|
"required": ["browsingActivity"]
|
|
}
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"tabs",
|
|
"storage"
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": true
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_title": "Swyx Tab Bridge",
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"48": "icons/icon.svg",
|
|
"96": "icons/icon.svg"
|
|
}
|
|
},
|
|
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"open_in_tab": false
|
|
},
|
|
|
|
"icons": {
|
|
"48": "icons/icon.svg",
|
|
"96": "icons/icon.svg"
|
|
}
|
|
}
|