Tabs Counter

Count the number of tabs that are open

Tabs Counterคืออะไร?

Tabs Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bill Miller และคุณลักษณะหลักของมันคือ "Count the number of tabs that are open"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Tabs Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If your curious as to how many browser tabs are open, just select "How many tabs?" from the context menu and all will be revealed                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tabs Counter Tabs Counter
ID kgdaeidiojbdgmnjnpmklilaodjlkbjp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp
คำอธิบาย Count the number of tabs that are open
ขนาดไฟล์ 43.49 KB
จำนวนการติดตั้ง 7,000
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2014-07-09
วันที่เผยแพร่ 2014-07-09
คะแนน 1.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Bill Miller
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs Counter",
    "description": "Count the number of tabs that are open",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "jquery.bpopup.min.js",
                "script.js"
            ]
        }
    ]
}