Fuzbal

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

Fuzbalとは何ですか?

FuzbalはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Gives Ctrl+F like find non-exact (fuzzy) results and regular expression matches.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Fuzbal拡張機能のCRXファイルをダウンロード

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