PowerTab

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

Cos'è PowerTab?

PowerTab è un'estensione di Chrome sviluppata da Insane, e la sua funzione principale è "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PowerTab

Scarica i file di estensione PowerTab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
URL Ufficiale https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
Descrizione Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Dimensione del File 20.13 KB
Conteggio Installazioni 34
Versione Corrente 1.0
Ultimo Aggiornamento 2013-09-16
Data di Pubblicazione 2013-09-16
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Insane
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}