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
官方網址 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"
    ]
}