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"
    }
}