URL Regex Replace

A Chrome extension that allows users to perform regex find and replace on the current tab's URL.

URL Regex Replace란 무엇입니까?

URL Regex Replace은(는) Teddy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that allows users to perform regex find and replace on the current tab's URL."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The **URL Regex Replace** is a Chrome extension that allows users to perform regex find and replace on the current tab's URL. This extension is useful for modifying URLs, testing, or redirecting to different environments. It now includes an options page for managing frequently-used find and replace pairs and a revamped popup with two tabs for ease of use.

If you were using the previous version of this extension, also called `Prepend URL Chrome Extension`, the feature is still there! Just use the `^` character in the 'Find' field and the string you want to prepend in the 'Replace' field.                    

확장 프로그램 기본 정보

이름 URL Regex Replace URL Regex Replace
ID nkohlbebkognioabnnjchnchdapolofb
공식 URL https://chromewebstore.google.com/detail/url-regex-replace/nkohlbebkognioabnnjchnchdapolofb
설명 A Chrome extension that allows users to perform regex find and replace on the current tab's URL.
파일 크기 3.05 MB
설치 횟수 26
현재 버전 1.3.5
최근 업데이트 2023-12-05
출시 날짜 2023-02-23
개발자 Teddy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tddschn/url-regex-replace-chrome-extension
도움말 페이지 URL https://github.com/tddschn/url-regex-replace-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3,
    "name": "URL Regex Replace",
    "version": "1.3.5",
    "description": "A Chrome extension that allows users to perform regex find and replace on the current tab's URL.",
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icons\/icon.png"
    }
}