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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Teddy และคุณลักษณะหลักของมันคือ "A Chrome extension that allows users to perform regex find and replace on the current tab's URL."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URL Regex Replace

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}