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 là gì?

Rex - RegEx Highlight or Collapse Text là một tiện ích mở rộng Chrome được phát triển bởi cgrossde, và tính năng chính của nó là "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Rex - RegEx Highlight or Collapse Text

Tải xuống các tệp mở rộng Rex - RegEx Highlight or Collapse Text dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Rex - RegEx Highlight or Collapse Text Rex - RegEx Highlight or Collapse Text
ID eejlhekkafpkffbhpidchepheodkgnib
URL Chính Thức https://chromewebstore.google.com/detail/rex-regex-highlight-or-co/eejlhekkafpkffbhpidchepheodkgnib
Mô tả Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.
Kích Thước Tệp 314 KB
Số Lần Cài Đặt 192
Phiên Bản Hiện Tại 0.3.1
Cập Nhật Lần Cuối 2018-09-06
Ngày Phát Hành 2018-09-06
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển cgrossde
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cgrossde/rex
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}