Show Tab List

Show all sites in the current page

Show Tab Listคืออะไร?

Show Tab List เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pinibalilihamelech และคุณลักษณะหลักของมันคือ "Show all sites in the current page"

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

screenshot

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

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

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

                        Press Ctrl+Shift+Y to view a list of the sites used in the current page.                    

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

ชื่อ Show Tab List Show Tab List
ID pjpbfdjmmlnelgbkffopkgpggeeaildc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc
คำอธิบาย Show all sites in the current page
ขนาดไฟล์ 8.67 KB
จำนวนการติดตั้ง 14,454
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2015-03-13
วันที่เผยแพร่ 2015-03-13
คะแนน 2.11/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา pinibalilihamelech
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Tab List",
    "description": "Show all sites in the current page",
    "version": "0.1",
    "manifest_version": 2,
    "icons": {
        "16": "resources\/images\/icon-16.png",
        "48": "resources\/images\/icon-48.png",
        "128": "resources\/images\/icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "background": {
        "scripts": [
            "resources\/js\/myBackground.js"
        ]
    },
    "commands": {
        "toggle-tab-list": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Toggle tab list"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "resources\/js\/page.js"
            ]
        }
    ]
}