Regex Replace

A regex engine to handle basic regular expressions on all viewed pages.

Regex Replace란 무엇입니까?

Regex Replace은(는) Jack Kingsman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A regex engine to handle basic regular expressions on all viewed pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Whether you want to consolidate your cloud-to-butt and your xkcd inspired s/keyboard/leopard extensions, or just do a simple regex replace on all pages, this extension is for you.

With a quick engine that doesn't interrupt page display and an easy way to add new expressions, Regex Replace is what you need to do fast and easy regex replacements on every page you see.                    

확장 프로그램 기본 정보

이름 Regex Replace Regex Replace
ID eggkcpojddgjkakokkdhocbjebhgkonb
공식 URL https://chromewebstore.google.com/detail/regex-replace/eggkcpojddgjkakokkdhocbjebhgkonb
설명 A regex engine to handle basic regular expressions on all viewed pages.
파일 크기 165 KB
설치 횟수 1,778
현재 버전 0.0.5
최근 업데이트 2023-12-11
출시 날짜 2019-04-11
평점 4.27/5 총 22 개의 평점
개발자 Jack Kingsman
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jkingsman/regex-replace/issues
도움말 페이지 URL https://github.com/jkingsman/regex-replace/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Regex Replace",
    "version": "0.0.5",
    "description": "A regex engine to handle basic regular expressions on all viewed pages.",
    "browser_action": {
        "default_title": "Regex Replace Options",
        "default_icon": {
            "19": "img\/gear19.png",
            "38": "img\/gear38.png"
        },
        "default_popup": "html\/main.html"
    },
    "author": "Jack Kingsman ",
    "icons": {
        "16": "img\/gear16.png",
        "48": "img\/gear48.png",
        "128": "img\/gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage"
    ]
}