RegEx Highlighter
Hilight text on any webpage using regular expressions
Qu'est-ce que RegEx Highlighter ?
RegEx Highlighter est une extension Chrome développée par swellsdev, et sa fonction principale est "Hilight text on any webpage using regular expressions".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension RegEx Highlighter
Téléchargez les fichiers d'extension RegEx Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Want to persistently highlight text on webpages using Regular Expressions? Try Regular Expression Highlighter!
Informations de Base sur l'Extension
Nom | |
ID | fflhnegnapfabeeoanbnmhkengiabffb |
URL Officiel | https://chrome.google.com/webstore/detail/regex-highlighter/fflhnegnapfabeeoanbnmhkengiabffb |
Description | Hilight text on any webpage using regular expressions |
Taille du Fichier | 41.83 KB |
Nombre d'Installations | 317 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-10-31 |
Date de Publication | 2014-10-31 |
Évaluation | 3.25/5 Total 12 Évaluations |
Développeur | swellsdev |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RegEx Highlighter", "description": "Hilight text on any webpage using regular expressions", "version": "1.0", "permissions": [ "activeTab", "storage" ], "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_title": "RegEx Highlight!", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "jquery.js", "background.js", "highlightRegex.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "manifest_version": 2 } |