Fuzbal

Gives Ctrl+F like find non-exact (fuzzy) results and regular expression matches.

Fuzbal क्या है?

Fuzbal Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gives Ctrl+F like find non-exact (fuzzy) results and regular expression matches."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Author: Alexey Ilchenko

Fuzbal gives Ctrl+F like find results which include non-exact (fuzzy) matches and also searching by regular expressions. The fuzziness comes from trying to add potentially misspelled words and words that are often seen together in context (synonyms). 

The former uses string edit distance while the latter uses Stanford's GloVe pre-trained word vectors. The dictionary file is included with the extension and so all searches are done locally. 

Source code: https://github.com/ijkilchenko/Fuzbal                    

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

नाम Fuzbal Fuzbal
ID lidjpicdkcgjdkgifmmpalkibjeppdof
आधिकारिक URL https://chromewebstore.google.com/detail/fuzbal/lidjpicdkcgjdkgifmmpalkibjeppdof
विवरण Gives Ctrl+F like find non-exact (fuzzy) results and regular expression matches.
फ़ाइल का आकार 3.26 MB
स्थापना संख्या 154
वर्तमान संस्करण 0.995
अंतिम अपडेट 2016-12-31
प्रकाशन तिथि 2016-12-30
रेटिंग 4.00/5 कुल 4 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ijkilchenko/Fuzbal
सहायता पृष्ठ URL https://github.com/ijkilchenko/Fuzbal/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fuzbal",
    "version": "0.995",
    "manifest_version": 2,
    "description": "Gives Ctrl+F like find non-exact (fuzzy) results and regular expression matches. ",
    "icons": {
        "128": ".\/icons\/fuzbal_icon.png"
    },
    "browser_action": {
        "default_name": "Fuzbal",
        "default_icon": ".\/icons\/fuzbal_marker.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            ".\/libraries\/jquery-2.1.4.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                ".\/libraries\/jquery-2.1.4.min.js",
                ".\/libraries\/damerau_levenshtein.js",
                ".\/libraries\/my_library.js",
                "content_script.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+K",
                "mac": "Command+Shift+K",
                "chromeos": "Ctrl+Shift+K",
                "linux": "Ctrl+Shift+K"
            }
        }
    },
    "permissions": [
        "file:\/\/*\/*",
        "tabs"
    ]
}