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文件

下載URL Regex Replace擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}