Save up to 95% memory and reduce tab clutter
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": "OneTab",
"description": "__MSG_manifestDescription__",
"version": "1.86",
"default_locale": "en",
"commands": {
"display-onetab": {
"suggested_key": {
"default": "Alt+Shift+1"
},
"description": "__MSG_displayOneTab__"
},
"send-current-tab-to-onetab": {
"description": "__MSG_sendCurrentTabToOneTab__"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"16": "images/extension-icon16.png",
"32": "images/extension-icon32.png",
"48": "images/extension-icon48.png",
"64": "images/extension-icon64.png",
"128": "images/extension-icon128.png"
},
"optional_permissions": [
"tabGroups"
],
"permissions": [
"favicon",
"unlimitedStorage",
"storage",
"activeTab",
"scripting",
"tabs",
"contextMenus"
],
"action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
}
},
"background": {
"service_worker": "ext-onetab-concatenated-sources-background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' data: https://t2.gstatic.com;"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}