PowerTab

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

Apa itu PowerTab?

PowerTab adalah ekstensi Chrome yang dikembangkan oleh Insane, dan fitur utamanya adalah "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi PowerTab

Unduh file ekstensi PowerTab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
URL Resmi https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
Deskripsi Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Ukuran File 20.13 KB
Jumlah Instalasi 34
Versi Saat Ini 1.0
Terakhir Diperbarui 2013-09-16
Tanggal Publikasi 2013-09-16
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Insane
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}