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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" ] } |