Fuzzy Tab Search

Fuzzy search the title and contents of every tab.

Fuzzy Tab Search क्या है?

Fuzzy Tab Search Moshe Kolodny द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fuzzy search the title and contents of every tab."।

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

screenshot
screenshot
screenshot

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

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

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

                        Fuzzy Tab Search allows you allows you to perform a fuzzy search through all your tabs.
Fuzzy Tab Search will show you the tabs in the most recent order used when there is no search text.
Fuzzy Tab Search displays the number of open tabs.

Use Ctrl+Shift+F to launch Fuzzy Tab Search or click the Fuzzy Tab Search icon.

The shortcut can be changed in chrome://extensions/

Icons made by Smashicons from www.flaticon.com is licensed by CC 3.0 BY                    

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

नाम Fuzzy Tab Search Fuzzy Tab Search
ID eigldibiccijmcnikjcibichajdledfl
आधिकारिक URL https://chromewebstore.google.com/detail/fuzzy-tab-search/eigldibiccijmcnikjcibichajdledfl
विवरण Fuzzy search the title and contents of every tab.
फ़ाइल का आकार 37.08 KB
स्थापना संख्या 117
वर्तमान संस्करण 0.0.0.4
अंतिम अपडेट 2018-01-19
प्रकाशन तिथि 2018-01-19
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Moshe Kolodny
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fuzzy Tab Search",
    "description": "Fuzzy search the title and contents of every tab.",
    "version": "0.0.0.4",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Fuzzy search all tabs"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js",
            "fuzzySearch.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}