PowerTab

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

什麼是PowerTab?

PowerTab是由Insane開發的Chrome擴展程式,該擴展的主要功能是“Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.”。

擴展截圖

screenshot

下載PowerTab擴展crx文件

下載PowerTab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
官方網址 https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
簡介 Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
檔案大小 20.13 KB
安裝次數 34
目前版本 1.0
更新時間 2013-09-16
上架時間 2013-09-16
評分 5.00/5 共 1 次評分
開發者 Insane
付費類型 free
支援的語言 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"
        }
    ]
}