TabKeeper is a browser extension that helps you manage your tabs and tab groups
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "TabKeeper - Manages Tabs and Tab Groups",
"short_name": "TabKeeper",
"version": "1.0.2.0",
"version_name": "1.0.2",
"description": "TabKeeper is a browser extension that helps you manage your tabs and tab groups",
"permissions": [
"storage",
"tabs",
"tabGroups"
],
"author": "Xiaoliang Wang <zero@tomo.dev>",
"icons": {
"16": "images/logo-16.png",
"32": "images/logo-32.png",
"128": "images/logo-128.png"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"action": {
"default_popup": "index.html#home"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}