RegEx Highlighter
Hilight text on any webpage using regular expressions
Cos'è RegEx Highlighter?
RegEx Highlighter è un'estensione di Chrome sviluppata da swellsdev, e la sua funzione principale è "Hilight text on any webpage using regular expressions".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RegEx Highlighter
Scarica i file di estensione RegEx Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Want to persistently highlight text on webpages using Regular Expressions? Try Regular Expression Highlighter!
Informazioni di Base sull'Estensione
Nome | |
ID | fflhnegnapfabeeoanbnmhkengiabffb |
URL Ufficiale | https://chrome.google.com/webstore/detail/regex-highlighter/fflhnegnapfabeeoanbnmhkengiabffb |
Descrizione | Hilight text on any webpage using regular expressions |
Dimensione del File | 41.83 KB |
Conteggio Installazioni | 317 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-10-31 |
Data di Pubblicazione | 2014-10-31 |
Valutazione | 3.25/5 Totale 12 Valutazioni |
Sviluppatore | swellsdev |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |