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.”。

扩展截图

screenshot
screenshot

下载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 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"
    }
}