tabby - fast tab switching

Extension to search for and switch between tabs in seconds with a simple shortcut

tabby - fast tab switchingคืออะไร?

tabby - fast tab switching เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JulianWels และคุณลักษณะหลักของมันคือ "Extension to search for and switch between tabs in seconds with a simple shortcut"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย tabby - fast tab switching

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

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

                        Having a lot of tabs open can get annoying. Not necessarily because you're losing track of what tabs are open, but because they don't fit on your screen anymore.

With tabby, you can search for the tabs you know are there!

Super quick.
Switching between tabs can take less than a second. Just press the shortcut, type in some letters, and hit enter.

Workflow enhancement.
Searching with a few simple keystrokes is already possible in a lot of other software. You can search files in text-editors and IDEs or use Spotlight in macOS. tabby adds this functionality to your browser.

Typo-tolerant.
Thanks to fuzzy-search, tabby shows you as many results as possible, with the most relevant always at the top. That means egregious mistakes can often lead to the correct result.                    

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

ชื่อ tabby - fast tab switching tabby - fast tab switching
ID jgchkdchcccoibbjnknjakpcbjemapkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tabby-fast-tab-switching/jgchkdchcccoibbjnknjakpcbjemapkn
คำอธิบาย Extension to search for and switch between tabs in seconds with a simple shortcut
ขนาดไฟล์ 438 KB
จำนวนการติดตั้ง 58
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2020-10-20
วันที่เผยแพร่ 2020-06-12
ผู้พัฒนา JulianWels
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jwels.berlin/tabby/
URL หน้านโยบายความเป็นส่วนตัว https://jwels.berlin/tabby
ภาษาที่รองรับ de,en,pt-BR,pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "1.1.0",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "70.0"
        }
    },
    "icons": {
        "16": "tabby_icon_16.png",
        "48": "tabby_icon_48.png",
        "128": "tabby_icon_128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_title": "tabby",
        "default_popup": "index.html",
        "theme_icons": [
            {
                "dark": "\/icons\/tabby_icon_eye_light_16.png",
                "light": "\/icons\/tabby_icon_eye_dark_16.png",
                "size": 16
            },
            {
                "dark": "\/icons\/tabby_icon_eye_light_48.png",
                "light": "\/icons\/tabby_icon_eye_dark_48.png",
                "size": 48
            },
            {
                "dark": "\/icons\/tabby_icon_eye_light_128.png",
                "light": "\/icons\/tabby_icon_eye_dark_128.png",
                "size": 128
            }
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "description": "__MSG_shortcutOpen__",
            "suggested_key": {
                "default": "Ctrl+Space",
                "mac": "Alt+Space"
            }
        }
    }
}