PowerTab

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

PowerTabคืออะไร?

PowerTab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Insane และคุณลักษณะหลักของมันคือ "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PowerTab

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
        }
    ]
}