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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cgrossde และคุณลักษณะหลักของมันคือ "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rex - RegEx Highlight or Collapse Text
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |