first commit

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-20 11:05:58 +02:00
co-authored by Claude Opus 5
commit 99757361ef
15 changed files with 3020 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
{
"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"
}
}