Rex - RegEx Highlight or Collapse Text
Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.
Wat is Rex - RegEx Highlight or Collapse Text?
Rex - RegEx Highlight or Collapse Text is een Chrome-extensie ontwikkeld door cgrossde, en de belangrijkste functie is "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.".
Extensie Screenshots
Download het CRX-bestand van de extensie Rex - RegEx Highlight or Collapse Text
Download Rex - RegEx Highlight or Collapse Text-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
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
Basisinformatie over de Extensie
Naam | Rex - RegEx Highlight or Collapse Text |
ID | eejlhekkafpkffbhpidchepheodkgnib |
Officiële URL | https://chromewebstore.google.com/detail/rex-regex-highlight-or-co/eejlhekkafpkffbhpidchepheodkgnib |
Beschrijving | Use regular expressions to highlight or collapse text. Useful for logs or stacktraces. |
Bestandsgrootte | 314 KB |
Aantal Installaties | 192 |
Huidige Versie | 0.3.1 |
Laatst Bijgewerkt | 2018-09-06 |
Publicatiedatum | 2018-09-06 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | cgrossde |
Betalingswijze | free |
Extensiewebsite | https://github.com/cgrossde/rex |
Ondersteunde Talen | 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" } } |