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 擴展基本資訊
| 名稱 | |
| ID | eejlhekkafpkffbhpidchepheodkgnib |
| 官方網址 | 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"
}
} | |