Rex - RegEx Highlight or Collapse Text
Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.
Cos'è Rex - RegEx Highlight or Collapse Text?
Rex - RegEx Highlight or Collapse Text è un'estensione di Chrome sviluppata da cgrossde, e la sua funzione principale è "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Rex - RegEx Highlight or Collapse Text
Scarica i file di estensione Rex - RegEx Highlight or Collapse Text 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
This extension allows to use regular expressions to highlight or collapse text on a web page. It was developed to facilitate log analysis (e.g. highlight important parts of stacktraces and collapsing framework noise) GitHub: https://github.com/cgrossde/rex
Informazioni di Base sull'Estensione
Nome | Rex - RegEx Highlight or Collapse Text |
ID | eejlhekkafpkffbhpidchepheodkgnib |
URL Ufficiale | https://chromewebstore.google.com/detail/rex-regex-highlight-or-co/eejlhekkafpkffbhpidchepheodkgnib |
Descrizione | Use regular expressions to highlight or collapse text. Useful for logs or stacktraces. |
Dimensione del File | 314 KB |
Conteggio Installazioni | 192 |
Versione Corrente | 0.3.1 |
Ultimo Aggiornamento | 2018-09-06 |
Data di Pubblicazione | 2018-09-06 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | cgrossde |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/cgrossde/rex |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Rex - RegEx Highlight or Collapse Text", "short_name": "REX", "description": "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.", "version": "0.3.1", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "128": "img\/icon128.png", "48": "img\/icon48.png", "32": "img\/icon32.png" }, "offline_enabled": true, "web_accessible_resources": [ "css\/content.css", "js\/*.js" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*\/*", "file:\/\/\/*\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/content\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_title": "Rex - Search and Highlight", "default_icon": "img\/icon48.png", "default_popup": "popup.html" } } |