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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}