PowerTab

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

Vad är PowerTab?

PowerTab är en Chrome-tillägg utvecklad av Insane, och dess huvudfunktion är "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Tilläggsskärmbilder

screenshot

Ladda ner PowerTab-förlängningens CRX-fil

Ladda ner PowerTab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
Officiell webbadress https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
Beskrivning Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Filstorlek 20.13 KB
Antal Installationer 34
Aktuell Version 1.0
Senast Uppdaterad 2013-09-16
Publiceringsdatum 2013-09-16
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Insane
Betalningssätt free
Stödda Språk 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"
        }
    ]
}