Highlight tool
Highlight tool with jumps and Regex
Vad är Highlight tool?
Highlight tool är en Chrome-tillägg utvecklad av Utopia, och dess huvudfunktion är "Highlight tool with jumps and Regex".
Tilläggsskärmbilder
Ladda ner Highlight tool-förlängningens CRX-fil
Ladda ner Highlight tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | bocgmaooafgikalnonpaccinefpncobc |
Officiell webbadress | https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc |
Beskrivning | Highlight tool with jumps and Regex |
Filstorlek | 209 KB |
Antal Installationer | 3,000 |
Aktuell Version | 0.0.6 |
Senast Uppdaterad | 2017-02-14 |
Publiceringsdatum | 2017-02-14 |
Betyg | 4.00/5 Totalt 5 Betyg |
Utvecklare | Utopia |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |