URL Regex Replace

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

Was ist URL Regex Replace?

URL Regex Replace ist eine Chrome-Erweiterung, die von Teddy entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension that allows users to perform regex find and replace on the current tab's URL.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

URL Regex Replace-Erweiterungs-CRX-Datei herunterladen

Laden Sie URL Regex Replace-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name URL Regex Replace URL Regex Replace
ID nkohlbebkognioabnnjchnchdapolofb
Offizielle URL https://chromewebstore.google.com/detail/url-regex-replace/nkohlbebkognioabnnjchnchdapolofb
Beschreibung A Chrome extension that allows users to perform regex find and replace on the current tab's URL.
Dateigröße 3.05 MB
Installationsanzahl 26
Aktuelle Version 1.3.5
Letztes Update 2023-12-05
Veröffentlichungsdatum 2023-02-23
Entwickler Teddy
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tddschn/url-regex-replace-chrome-extension
Hilfeseite URL https://github.com/tddschn/url-regex-replace-chrome-extension
Unterstützte Sprachen 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"
    }
}