Highlight tool
Highlight tool with jumps and Regex
Co to jest Highlight tool?
Highlight tool to rozszerzenie Chrome opracowane przez Utopia, a jego główną funkcją jest „Highlight tool with jumps and Regex”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Highlight tool
Pobierz pliki rozszerzeń Highlight tool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Quickly highlight text in webpages using regular text or RegExp. Press Ctrl+j to move to the next match, and Ctrl+k to move previous match.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | bocgmaooafgikalnonpaccinefpncobc |
Oficjalny URL | https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc |
Opis | Highlight tool with jumps and Regex |
Rozmiar pliku | 209 KB |
Liczba instalacji | 3,000 |
Aktualna Wersja | 0.0.6 |
Ostatnia Aktualizacja | 2017-02-14 |
Data Publikacji | 2017-02-14 |
Ocena | 4.00/5 Łącznie 5 Oceny |
Deweloper | Utopia |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.6", "name": "Highlight tool", "description": "Highlight tool with jumps and Regex", "manifest_version": 2, "icons": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "38": "images\/icon-38.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "storage", "notifications" ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "popup.html" ] } |