Regex Checker

This extension uses regular expressions to find important elements on webpages.

Regex Checker란 무엇입니까?

Regex Checker은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension uses regular expressions to find important elements on webpages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Regex Checker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Regex Checker uses regular expressions to find important elements on webpages.
The extension finds important text on webpages and highlights.

There are 2 modes of operation: manual and automatic.

Automatic:
- In automatic mode, a list of default regular expressions are used to parse the page and highlight important elements.
- The user can add or remove expressions from the current search criteria.

Manual:
- In manual mode, the user enters a custom regular expression along with flags.                    

확장 프로그램 기본 정보

이름 Regex Checker Regex Checker
ID gkcnkoebkkppbapcjifgokmpcflfhbde
공식 URL https://chromewebstore.google.com/detail/regex-checker/gkcnkoebkkppbapcjifgokmpcflfhbde
설명 This extension uses regular expressions to find important elements on webpages.
파일 크기 88.1 KB
설치 횟수 89
현재 버전 0.0.0.1
최근 업데이트 2017-12-09
출시 날짜 2017-12-09
평점 5.00/5 총 1 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Checker",
    "description": "This extension uses regular expressions to find important elements on webpages.",
    "version": "0.0.0.1",
    "browser_action": {
        "default_icon": "img\/iconstar.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "lib\/jquery-3.2.1.js",
                "js\/searchFunction.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}