Type-ahead-find
Find text or links as you type
Type-ahead-find क्या है?
Type-ahead-find typeaheadfind द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find text or links as you type"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Type-ahead-find एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |