Rex - RegEx Highlight or Collapse Text
Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.
Rex - RegEx Highlight or Collapse Textとは何ですか?
Rex - RegEx Highlight or Collapse Textはcgrossdeによって開発されたChromeの拡張機能で、その主な機能は「Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.」です。
拡張機能のスクリーンショット
Rex - RegEx Highlight or Collapse Text拡張機能のCRXファイルをダウンロード
Rex - RegEx Highlight or Collapse Text拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Rex - RegEx Highlight or Collapse Text |
ID | eejlhekkafpkffbhpidchepheodkgnib |
公式URL | https://chromewebstore.google.com/detail/rex-regex-highlight-or-co/eejlhekkafpkffbhpidchepheodkgnib |
説明 | Use regular expressions to highlight or collapse text. Useful for logs or stacktraces. |
ファイルサイズ | 314 KB |
インストール数 | 192 |
現在のバージョン | 0.3.1 |
最終更新日 | 2018-09-06 |
公開日 | 2018-09-06 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | cgrossde |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/cgrossde/rex |
対応言語 | 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" } } |