PowerTab

Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.

What is PowerTab?

PowerTab is a Chrome extension developed by Insane, and its main feature is "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Extension Screenshots

screenshot

Download PowerTab Extension CRX File

Download PowerTab 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

                        Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.                    

Extension Basic Information

Name PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
Official URL https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
Description Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
File Size 20.13 KB
Installation Count 34
Current Version 1.0
Last Updated 2013-09-16
Publish Date 2013-09-16
Rating 5.00/5 Total 1 Ratings
Developer Insane
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PowerTab",
    "description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.",
    "version": "1.0",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "clipboardWrite",
        "tabs"
    ],
    "icons": {
        "16": "icon16x16.png",
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "browser_action": {
        "default_icon": "icon16x16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ]
}