Quickfind
highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.
Hvad er Quickfind?
Quickfind er en Chrome-udvidelse udviklet af matthew, og dens hovedfunktion er "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.".
Udvidelsesskærmbilleder
Download Quickfind-udvidelses-CRX-fil
Download Quickfind-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Highlight all occurrences of a specific word on a web page by alt + double clicking it or highlight a phrase by alt + selecting it. This is really useful for skimming text or documentation. ## THIS EXTENSION IS IN DEV BETA ##
Grundlæggende oplysninger om udvidelsen
Navn | Quickfind |
ID | dhamednoifcgcdpdoodioenmiakpccjo |
Officiel URL | https://chromewebstore.google.com/detail/quickfind/dhamednoifcgcdpdoodioenmiakpccjo |
Beskrivelse | highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word. |
Filstørrelse | 41.68 KB |
Antal Installationer | 400 |
Nuværende Version | 1.3 |
Senest Opdateret | 2016-01-09 |
Udgivelsesdato | 2016-01-09 |
Bedømmelse | 3.57/5 Samlet 7 Bedømmelser |
Udvikler | matthew |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quickfind", "description": "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.", "version": "1.3", "icons": { "16": "icon16.png", "48": "icon48.png", "32": "icon32.png", "128": "icon128.png" }, "author": "Matthew Moy", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "style.css" ], "js": [ "jquery-2.1.4.min.js", "search.js", "findAndReplaceDOM.min.js" ] } ] } |