PowerTab

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

Qu'est-ce que PowerTab ?

PowerTab est une extension Chrome développée par Insane, et sa fonction principale est "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension PowerTab

Téléchargez les fichiers d'extension PowerTab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
URL Officiel 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.
Taille du Fichier 20.13 KB
Nombre d'Installations 34
Version Actuelle 1.0
Dernière Mise à Jour 2013-09-16
Date de Publication 2013-09-16
Évaluation 5.00/5 Total 1 Évaluations
Développeur Insane
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}