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."입니다.
확장 프로그램 스크린샷
Fuzbal 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } |