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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |