Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Tab Flow & Drag",
"version": "2",
"description": "Customizes tab handling and includes features such as cross-window management, preview thumbnails, and recently closed tab restore.",
"icons": {
"16": "tabs.png",
"48": "tabs.png",
"128": "tabs.png"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"tabs",
"storage",
"contextMenus",
"notifications",
"scripting",
"sessions"
],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"action": {
"default_title": "Tab Behavior Extension",
"default_popup": "popup.html"
},
"commands": {
"close-same-domain": {
"suggested_key": {
"default": "Shift+Alt+X"
},
"description": "Close all tabs from the same domain as the active tab."
},
"smartTabSort": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Smart Tab Sorting in the current window"
},
"reopen-closed-tab": {
"suggested_key": {
"default": "Shift+Alt+R"
},
"description": "Reopen the most recently closed tab."
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dragsearch.js"
],
"run_at": "document_start"
}
]
}