URL Regex Replace
A Chrome extension that allows users to perform regex find and replace on the current tab's URL.
Hvad er URL Regex Replace?
URL Regex Replace er en Chrome-udvidelse udviklet af Teddy, og dens hovedfunktion er "A Chrome extension that allows users to perform regex find and replace on the current tab's URL.".
Udvidelsesskærmbilleder
Download URL Regex Replace-udvidelses-CRX-fil
Download URL Regex Replace-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | URL Regex Replace |
ID | nkohlbebkognioabnnjchnchdapolofb |
Officiel URL | https://chromewebstore.google.com/detail/url-regex-replace/nkohlbebkognioabnnjchnchdapolofb |
Beskrivelse | A Chrome extension that allows users to perform regex find and replace on the current tab's URL. |
Filstørrelse | 3.05 MB |
Antal Installationer | 26 |
Nuværende Version | 1.3.5 |
Senest Opdateret | 2023-12-05 |
Udgivelsesdato | 2023-02-23 |
Udvikler | Teddy |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/tddschn/url-regex-replace-chrome-extension |
Hjælpeside-URL | https://github.com/tddschn/url-regex-replace-chrome-extension |
Understøttede Sprog | 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" } } |