Tab Switcher

Rapidly filter and switch between windows & tabs

Tab Switcher क्या है?

Tab Switcher https://flowapps.co/tabswitcher द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rapidly filter and switch between windows & tabs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tab Switcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Tab Switcher lets you to quickly switch to other open tabs using only the keyboard, including filtering tabs by partial name or URL match.

- Filter by tab title or URL with fuzzy autocompletion.
- Press ⌘/Ctrl⇧K to start filtering, move selection with ↑↓, press ⏎ to switch.

WHAT'S NEW
November 6th 2019 – You can now drag and and drop tabs between windows. And of course, dark mode!
September 8th 2018 – Updated to match the new Chrome Material design
July 23th 2018 – Users can now decide whether to show tabs from all windows
July 8th 2018 – It's now possible to switch between windows.

FAQ

Why does Tab Switcher need access to my browsing history? 
– This is required to allow you to search and switch between tabs. Only titles and URLs of tab are used for this, and no data is stored or sent anywhere. Please check out the source code at https://github.com/kallepersson/tabswitcher.

How do I change the keyboard shortcut to show Tab Switcher?
– It's easy, you can change the Keyboard Shortcut at the bottom of the Extensions Settings Page!

PRIVACY POLICY
Please find the privacy policy at http://flowapps.co/tabswitcher/privacypolicy.html                    

एक्सटेंशन की मूल जानकारी

नाम Tab Switcher Tab Switcher
ID gcilookdakgpccpbcjgnpaecofklimck
आधिकारिक URL https://chromewebstore.google.com/detail/tab-switcher/gcilookdakgpccpbcjgnpaecofklimck
विवरण Rapidly filter and switch between windows & tabs
फ़ाइल का आकार 53.98 KB
स्थापना संख्या 5,368
वर्तमान संस्करण 2.2.0
अंतिम अपडेट 2020-11-18
प्रकाशन तिथि 2020-02-10
रेटिंग 4.70/5 कुल 23 रेटिंग्स
डेवलपर https://flowapps.co/tabswitcher
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://flowapps.co/tabswitcher/
सहायता पृष्ठ URL http://flowapps.co/tabswitcher/
गोपनीयता नीति पृष्ठ URL http://flowapps.co/privacypolicy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Switcher",
    "author": "Kalle Persson",
    "version": "2.2.0",
    "homepage_url": "http:\/\/flowapps.co\/tabswitcher",
    "description": "Rapidly filter and switch between windows & tabs",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "19": "icons\/icon-19.png",
        "38": "icons\/icon-38.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "switcher.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            }
        }
    }
}