Highlight tool
Highlight tool with jumps and Regex
Wat is Highlight tool?
Highlight tool is een Chrome-extensie ontwikkeld door Utopia, en de belangrijkste functie is "Highlight tool with jumps and Regex".
Extensie Screenshots
Download het CRX-bestand van de extensie Highlight tool
Download Highlight tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | bocgmaooafgikalnonpaccinefpncobc |
Officiële URL | https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc |
Beschrijving | Highlight tool with jumps and Regex |
Bestandsgrootte | 209 KB |
Aantal Installaties | 3,000 |
Huidige Versie | 0.0.6 |
Laatst Bijgewerkt | 2017-02-14 |
Publicatiedatum | 2017-02-14 |
Beoordeling | 4.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Utopia |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |