This commit is contained in:
2026-06-07 21:45:42 +03:00
commit 0f56395de9
7 changed files with 271 additions and 0 deletions

17
manifest.json Normal file
View File

@@ -0,0 +1,17 @@
{
"manifest_version": 3,
"name": "Tab Archive",
"version": "1.0.0",
"description": "Save all your open tabs to your self-hosted Tab Archive backend.",
"permissions": ["tabs", "storage"],
"host_permissions": ["http://localhost/*", "https://*/*", "http://*/*"],
"action": {
"default_popup": "popup.html",
"default_title": "Tab Archive"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}