Regex Replace

Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…

Regex Replace란 무엇입니까?

Regex Replace은(는) Code Charity에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Regex replace. Replace anything on every site. Regex replace anywhere.  Replace HTML.  Use regular expression to Inject html, pictures, css, js scripts, features anywhere

Options:
Apply by Domain, URL, Keyword, Regex (or global)
Bulk edit  (Regex.txt text file)
Regex flags
(Activate/deactive applied regex)
Display applied regex's on page. Copy all matches. 
Chained Regex (Apply a regular expression conditionally only if other Regex's match the page content already)
Negative Look ahead / Positive Look ahead

TESTING VERSION:   
Options to come soon! Which one first? (Please dont down vote just yet)

We are developing distraction free extensions since 2012 for >250000 people https://github.com/ImprovedTube/ImprovedTube                    

확장 프로그램 기본 정보

이름 Regex Replace Regex Replace
ID ihcaaefaoebbcklmolaflgllidfamfgm
공식 URL https://chromewebstore.google.com/detail/regex-replace/ihcaaefaoebbcklmolaflgllidfamfgm
설명 Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…
파일 크기 203 KB
설치 횟수 577
현재 버전 1.1
최근 업데이트 2020-10-21
출시 날짜 2020-04-29
평점 4.48/5 총 33 개의 평점
개발자 Code Charity
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://improvedtube.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Replace",
    "version": "1.1",
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content-scripts.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "linux": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "windows": "Ctrl+Shift+F",
                "chromeos": "Ctrl+Shift+F"
            }
        }
    }
}