Tabhunter

Wade through all your tabs fast

ما هو Tabhunter؟

Tabhunter هو إضافة Chrome تم تطويرها بواسطة eric.promislow، والميزة الرئيسية لها هي "Wade through all your tabs fast".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Tabhunter

قم بتنزيل ملفات الامتداد Tabhunter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension lets browser power-users easily juggle dozens of tabs at any time. Enter a search string (could be a standard JavaScript regex), highlight the URL you want to bring up, and press return, double-click it, or press the "Go" button. Tabhunter will even find and bring up minimized windows containing the target tab.

Tabhunter also lets you easily bulk-close large numbers of tabs. Let's say you have a bunch of github pages all related to a project we'll call "inconsolable-toucan". Enter a pattern like 'github.com/example-user/inconsolable-toucan', click on the first hit in the list, shift-click the last hit, and press the "Close Tabs" button. No-longer-needed tabs gone like that.

Bring up Tabhunter by either pressing the hunter's scope icon, or using the command-key Ctrl-Shift-T on macos, Alt-Shift-T on Linux and Windows.

Drowning in a sea of tabs? Stay afloat with Tabhunter. Users of that other browser have been happily using it since 2008. Now you Chrome folks can use it too.

Under no circumstances should this software be confused with Tab Hunter, an actor best known for his work in the mid-20th century.

Updates:
2.1.6 - support moving a group of tabs to a selected window

2.1.7 - support selecting windows in the pattern field:
* putting `{w:N}` at the start of a pattern shows only tabs in window N
* putting `{w:N:T1-T2}` at the start of a pattern shows only tabs T1 through T2 in window N
* putting `{w:N:T}` shows tabs T through the end in window N
* putting `{w:N:-T}` shows tabs 1 through T in window N

2.2.0 - prefs are now available in the main window via the "More..." button and no longer change only when the "Submit" button is pressed.

2.2.2 - Support for drag+drop when tabs are sorted by window/tab position.

3.0.1 - Reinstate support for searching *inside* the tabs, including by regex or xpath

3.1.0 - Support for "Select All" (Ctrl-A , Cmd-A on macos)

3.2.4 - Rearchitected to deal with very large numbers of tabs (like 1000 or more) gracefully

3.3.0 - Leave maximized and fullscreen windows at that size.

3.4.0 - Migrate the add-on to use the Chrome Manifest V3 version

3.5.0 - Press Backspace or Delete to close selected tabs

3.5.2 - Undo change in 3.5.0.  Backspace/Delete now works only on input fields.                    

معلومات أساسية عن التمديد

الاسم Tabhunter Tabhunter
ID kdbjnnjfgmbhoaggihfgnlfnfhhadmbn
عنوان URL الرسمي https://chromewebstore.google.com/detail/tabhunter/kdbjnnjfgmbhoaggihfgnlfnfhhadmbn
الوصف Wade through all your tabs fast
حجم الملف 95.47 KB
عدد التثبيتات 342
النسخة الحالية 3.5.2
آخر تحديث 2023-03-21
تاريخ النشر 2020-07-04
تقييم 5.00/5 مجموع تقييمات 7
المطور eric.promislow
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ericpromislow/tabhunter
عنوان صفحة المساعدة https://github.com/ericpromislow/tabhunter/issues
عنوان صفحة سياسة الخصوصية https://github.com/ericpromislow/tabhunter/blob/master/PRIVACY.md
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Eric Promislow",
    "action": {
        "default_icon": {
            "16": "icons\/martini-16x16.png",
            "24": "icons\/martini-24x24.png",
            "32": "icons\/martini-32x32.png"
        },
        "default_title": "Tabhunter",
        "default_popup": "popup\/tabhunter.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "mac": "MacCtrl+Shift+T",
                "windows": "Ctrl+Shift+S",
                "linux": "Ctrl+5"
            }
        }
    },
    "default_locale": "en",
    "description": "Wade through all your tabs fast",
    "homepage_url": "https:\/\/github.com\/ericpromislow\/tabhunter",
    "icons": {
        "48": "icons\/th-48x48.png",
        "96": "icons\/th-96x96.png",
        "128": "icons\/th-128x128.png"
    },
    "manifest_version": 3,
    "name": "Tabhunter",
    "options_ui": {
        "page": "popup\/prefs.html"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "short_name": "Tabhunter",
    "version": "3.5.2"
}