Regex Extracter

Use regex to extract the text content you need from web page

Regex Extracter란 무엇입니까?

Regex Extracter은(는) zhangbohun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use regex to extract the text content you need from web page"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        There are three text search modes:

Node mode: 
search HTML node text, the advantage is that can highlight the search result position.

Text mode: 
search the webpage text you see,commonly used to search results contain hyperlink text.

Source mode:
search HTML source code of web pages, commonly used to search for image addresses, download links, etc.                    

확장 프로그램 기본 정보

이름 Regex Extracter Regex Extracter
ID hhnkaciopdblfpomobniofiiecfiibph
공식 URL https://chromewebstore.google.com/detail/regex-extracter/hhnkaciopdblfpomobniofiiecfiibph
설명 Use regex to extract the text content you need from web page
파일 크기 144 KB
설치 횟수 541
현재 버전 0.1.6
최근 업데이트 2021-08-30
출시 날짜 2020-05-30
평점 5.00/5 총 5 개의 평점
개발자 zhangbohun
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "icons": {
        "128": "img\/icon.png"
    },
    "version": "0.1.6",
    "offline_enabled": true,
    "permissions": [
        "clipboardWrite"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "__MSG_name__",
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/search.js",
                "lib\/jquery.js"
            ]
        }
    ],
    "manifest_version": 2,
    "default_locale": "en"
}