Fuzbal

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

Что такое Fuzbal?

Fuzbal - это расширение Chrome, разработанное Unknown, и его основная функция - "Gives Ctrl+F like find non-exact (fuzzy) results and regular expression matches.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Fuzbal

Скачайте файлы расширений Fuzbal в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}