Regex

Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…

Regex란 무엇입니까?

Regex은(는) Code Charity에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Regex: The ultimate Regex search ⭐️
Simply use Regex on any page with familiar Ctrl+F visuals. 

✓ Ctrl+Shift+F search field   
✓  Regex query searching
✓ Number of results per tab   ✓ Scroll screen to previous/next result   ✓ Highlighting search results

 ✓ Permanently marking up or replacing anything.

 Open Source!    https://github.com/code-for-charity (where we work hard daily.) 
 Please check out the source code & contribute 🎈

The Extension runs offline                    

확장 프로그램 기본 정보

이름 Regex Regex
ID pmihaiejckejbpjdnildimfkpcpnohlo
공식 URL https://chromewebstore.google.com/detail/regex/pmihaiejckejbpjdnildimfkpcpnohlo
설명 Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…
파일 크기 366 KB
설치 횟수 421
현재 버전 2.0.0
최근 업데이트 2023-03-27
출시 날짜 2020-05-07
평점 4.50/5 총 14 개의 평점
개발자 Code Charity
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://improvedtube.com/privacy
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex",
    "version": "2.0.0",
    "default_locale": "en",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            }
        }
    },
    "offline_enabled": true
}