Smart Tab Manager

Smart Tab Manager assists users to manage their Chrome tabs efficiently.

What is Smart Tab Manager?

Smart Tab Manager is a Chrome extension developed by dwghanzogak, and its main feature is "Smart Tab Manager assists users to manage their Chrome tabs efficiently.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Smart Tab Manager Extension CRX File

Download Smart Tab Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Smart Tab Manager is powerful assistant for managing your Chrome tabs efficiently!
You can easily preview, search, open, close, separate, merge, suspend, order your tabs by using command line!

Use Ctrl+Shift+H to open 'Command Selection Popup'
Use Ctrl+Shift+E to open 'Command Box'                    

Extension Basic Information

Name Smart Tab Manager Smart Tab Manager
ID lahbgnkbojlfaocemjpkjgmdcnmpkfgc
Official URL https://chromewebstore.google.com/detail/smart-tab-manager/lahbgnkbojlfaocemjpkjgmdcnmpkfgc
Description Smart Tab Manager assists users to manage their Chrome tabs efficiently.
File Size 467 KB
Installation Count 746
Current Version 0.1.0
Last Updated 2017-02-24
Publish Date 2017-02-24
Rating 3.00/5 Total 16 Ratings
Developer dwghanzogak
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smart Tab Manager",
    "version": "0.1.0",
    "description": "Smart Tab Manager assists users to manage their Chrome tabs efficiently.",
    "background": {
        "scripts": [
            "src\/js\/jquery.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "resources\/favicon.png",
        "default_title": "Smart Tab Manager",
        "default_popup": "src\/html\/manager.html"
    },
    "icons": {
        "128": "resources\/favicon.png"
    },
    "omnibox": {
        "keyword": "tabby"
    },
    "chrome_url_overrides": {
        "newtab": "src\/html\/dashboard.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/js\/contents.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/html\/command_box.html",
        "resources\/favicon.png"
    ],
    "commands": {
        "show_command_box": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "windows": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "show command box"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "windows": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            }
        }
    }
}