Rex - RegEx Highlight or Collapse Text
Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.
Was ist Rex - RegEx Highlight or Collapse Text?
Rex - RegEx Highlight or Collapse Text ist eine Chrome-Erweiterung, die von cgrossde entwickelt wurde, und ihr Hauptmerkmal ist "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.".
Erweiterungsscreenshots
Rex - RegEx Highlight or Collapse Text-Erweiterungs-CRX-Datei herunterladen
Laden Sie Rex - RegEx Highlight or Collapse Text-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eejlhekkafpkffbhpidchepheodkgnib |
| Offizielle URL | https://chromewebstore.google.com/detail/rex-regex-highlight-or-co/eejlhekkafpkffbhpidchepheodkgnib |
| Beschreibung | Use regular expressions to highlight or collapse text. Useful for logs or stacktraces. |
| Dateigröße | 314 KB |
| Installationsanzahl | 192 |
| Aktuelle Version | 0.3.1 |
| Letztes Update | 2018-09-06 |
| Veröffentlichungsdatum | 2018-09-06 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | cgrossde |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/cgrossde/rex |
| Unterstützte Sprachen | 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"
}
} | |