PowerTab

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

Wat is PowerTab?

PowerTab is een Chrome-extensie ontwikkeld door Insane, en de belangrijkste functie is "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie PowerTab

Download PowerTab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
Officiële URL https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
Beschrijving Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Bestandsgrootte 20.13 KB
Aantal Installaties 34
Huidige Versie 1.0
Laatst Bijgewerkt 2013-09-16
Publicatiedatum 2013-09-16
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Insane
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}