Rex - RegEx Highlight or Collapse Text
Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.
Qu'est-ce que Rex - RegEx Highlight or Collapse Text ?
Rex - RegEx Highlight or Collapse Text est une extension Chrome développée par cgrossde, et sa fonction principale est "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Rex - RegEx Highlight or Collapse Text
Téléchargez les fichiers d'extension Rex - RegEx Highlight or Collapse Text 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
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
Informations de Base sur l'Extension
Nom | Rex - RegEx Highlight or Collapse Text |
ID | eejlhekkafpkffbhpidchepheodkgnib |
URL Officiel | https://chromewebstore.google.com/detail/rex-regex-highlight-or-co/eejlhekkafpkffbhpidchepheodkgnib |
Description | Use regular expressions to highlight or collapse text. Useful for logs or stacktraces. |
Taille du Fichier | 314 KB |
Nombre d'Installations | 192 |
Version Actuelle | 0.3.1 |
Dernière Mise à Jour | 2018-09-06 |
Date de Publication | 2018-09-06 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | cgrossde |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/cgrossde/rex |
Langues Prises en Charge | 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" } } |