Type-ahead-find
Find text or links as you type
Type-ahead-findคืออะไร?
Type-ahead-find เป็นส่วนขยายของ Chrome ที่พัฒนาโดย typeaheadfind และคุณลักษณะหลักของมันคือ "Find text or links as you type"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Type-ahead-find
ดาวน์โหลดไฟล์ส่วนขยาย Type-ahead-find ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Type-ahead-find [1] is an accessibility feature to search links and text faster on a webpage. How to use it: * Start writing (or press /) to start text search. * Press ' to search only links. * Change option "direct search state" to set the default search policy (text, links or disabled). * Use (Shift+)F3 or (Shift+)Control+G or Alt+N/P to switch between matches. * Use F4 to toggle matching mode (text/links) once the search is active. * Blacklist sites that set up their own shortcuts. * The search shows first matches in current viewport. Limitations: * It cannot search inside iframes. * It does not search text in adjacent HTML nodes (i.e. "hello" won't be found in HTML Hello) * If the page already sets Javascript keybidings, the extension may misbehave. The best solution is to blacklist the site in the options page and disable the extension for this particular website.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Type-ahead-find |
ID | cpecbmjeidppdiampimghndkikcmoadk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/type-ahead-find/cpecbmjeidppdiampimghndkikcmoadk |
คำอธิบาย | Find text or links as you type |
ขนาดไฟล์ | 17.05 KB |
จำนวนการติดตั้ง | 12,595 |
เวอร์ชันปัจจุบัน | 0.4.5 |
อัปเดตครั้งล่าสุด | 2021-11-23 |
วันที่เผยแพร่ | 2014-11-28 |
คะแนน | 4.49/5 รวมทั้งหมด 375 คะแนน |
ผู้พัฒนา | typeaheadfind |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Foxy/chrome-type-ahead |
URL หน้าช่วยเหลือ | https://github.com/Foxy/chrome-type-ahead |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Type-ahead-find", "description": "Find text or links as you type", "version": "0.4.5", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "type-ahead.js" ], "run_at": "document_start" } ], "icons": { "48": "icon-48.png" } } |