SuperTabs

SuperTabs allows you to list and search current open tabs and switch to them quickly.

SuperTabsคืออะไร?

SuperTabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://hamedmp.github.io และคุณลักษณะหลักของมันคือ "SuperTabs allows you to list and search current open tabs and switch to them quickly."

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

screenshot
screenshot
screenshot

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

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

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

                        Have you ever lost in the open tabs of your browser? Do you know how many open tabs you have at the moment? 

SuperTabs allows you to list and search current open tabs and switch to them quickly.

You can search for tabs based on their titles. The number of open tabs is shown as badge counter. By selecting the title of the tabs, it will get activated. You can navigate through the search result using Tab button and pressing Enter will activate that tab. 

For opening the pop up, use the shortcut of Cmd+E on Mac and Ctrl+E on Windows. Video here: https://youtu.be/uad9mZknUDk

Enjoying it? Cheer me up by buying me a coffee, I love it: buymeacoff.ee/hamedmp                    

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

ชื่อ SuperTabs SuperTabs
ID mlgnpmfabelpnbinakibjcaibnfdnpkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/supertabs/mlgnpmfabelpnbinakibjcaibnfdnpkn
คำอธิบาย SuperTabs allows you to list and search current open tabs and switch to them quickly.
ขนาดไฟล์ 40.65 KB
จำนวนการติดตั้ง 2,683
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2018-05-28
วันที่เผยแพร่ 2018-05-28
คะแนน 4.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://hamedmp.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/HamedMP/SuperTabs
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SuperTabs",
    "description": "SuperTabs allows you to list and search current open tabs and switch to them quickly.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon_16.png",
            "32": "assets\/icon_32.png",
            "64": "assets\/icon_64.png",
            "128": "assets\/icon_128.png"
        },
        "default_popup": "popup.html",
        "default_title": "SuperTabs"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            },
            "global": true
        }
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}