Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Tabs Manager",
"version": "3.1",
"description": "Quickly view, search, and manage all your open tabs with thumbnails and grouping across windows.",
"options_page": "options.html",
"background": {
"service_worker": "js\/background.js"
},
"action": {
"default_icon": {
"16": "img\/icon_16.png",
"48": "img\/icon_48.png",
"128": "img\/icon_128.png"
},
"default_title": "Tabs Manager",
"default_popup": "index.html"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "img\/icon_16.png",
"48": "img\/icon_48.png",
"128": "img\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js\/lib\/html2canvas.min.js",
"js\/content.js"
],
"run_at": "document_idle"
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Ctrl+Shift+Q"
},
"description": "Open Tabs Manager on search mode"
}
}
}