PowerTab

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

Was ist PowerTab?

PowerTab ist eine Chrome-Erweiterung, die von Insane entwickelt wurde, und ihr Hauptmerkmal ist "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Erweiterungsscreenshots

screenshot

PowerTab-Erweiterungs-CRX-Datei herunterladen

Laden Sie PowerTab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
Offizielle URL https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
Beschreibung Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Dateigröße 20.13 KB
Installationsanzahl 34
Aktuelle Version 1.0
Letztes Update 2013-09-16
Veröffentlichungsdatum 2013-09-16
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Insane
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}