Tab Number

Number tabs when the ctrl/alt/cmd button is held.

Tab Numberคืออะไร?

Tab Number เป็นส่วนขยายของ Chrome ที่พัฒนาโดย stugrammer และคุณลักษณะหลักของมันคือ "Number tabs when the ctrl/alt/cmd button is held."

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

screenshot

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

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

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

                        A tool for those who uses ctrl/alt/cmd+number to jump between tabs. Display page number when you hold ctrl/alt/cmd key.

Version 0.2.0.1:
* Now the extension also works with pages having no favicon.
* Fixed a bug that the number is not shown on some pages, such as google group.

Version 0.1.0.2:
* Show tab numbers when alt is held in non-Mac system.
* Fixed a bug that tab numbers stay if page is closed with ctrl/cmd+w.
* Fixed a bug that tab numbers stay if control is switched to another window when ctrl/alt/cmd is held.                    

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

ชื่อ Tab Number Tab Number
ID fijaenjgknobfdombbdchngpamggajpm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-number/fijaenjgknobfdombbdchngpamggajpm
คำอธิบาย Number tabs when the ctrl/alt/cmd button is held.
ขนาดไฟล์ 27.02 KB
จำนวนการติดตั้ง 1,847
เวอร์ชันปัจจุบัน 0.2.0.1
อัปเดตครั้งล่าสุด 2013-12-03
วันที่เผยแพร่ 2013-12-03
คะแนน 3.36/5 รวมทั้งหมด 55 คะแนน
ผู้พัฒนา stugrammer
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Number",
    "description": "Number tabs when the ctrl\/alt\/cmd button is held.",
    "version": "0.2.0.1",
    "icons": {
        "48": "icon-48.gif",
        "128": "icon-128.gif"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "chrome:\/\/favicon\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "num_tab.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "favicon\/favicon-1.gif",
        "favicon\/favicon-2.gif",
        "favicon\/favicon-3.gif",
        "favicon\/favicon-4.gif",
        "favicon\/favicon-5.gif",
        "favicon\/favicon-6.gif",
        "favicon\/favicon-7.gif",
        "favicon\/favicon-8.gif",
        "favicon\/favicon-9.gif"
    ]
}