Edit Url by Regex

Edit Url by Regex

Was ist Edit Url by Regex?

Edit Url by Regex ist eine Chrome-Erweiterung, die von ajsun entwickelt wurde, und ihr Hauptmerkmal ist "Edit Url by Regex".

Erweiterungsscreenshots

screenshot

Edit Url by Regex-Erweiterungs-CRX-Datei herunterladen

Laden Sie Edit Url by Regex-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

                        If you need to replace some specific parts of the current tab url matching a pattern with new value, then this extension is for you.
You can provide the data for the pattern and the new value, then hit submit. The URL will get changed automatically.                    

Grundlegende Informationen zur Erweiterung

Name Edit Url by Regex Edit Url by Regex
ID ofhioacmkjbbalfidehfdecjfnllhdno
Offizielle URL https://chromewebstore.google.com/detail/edit-url-by-regex/ofhioacmkjbbalfidehfdecjfnllhdno
Beschreibung Edit Url by Regex
Dateigröße 52.6 KB
Installationsanzahl 80
Aktuelle Version 1.3.0.0
Letztes Update 2022-05-03
Veröffentlichungsdatum 2022-03-25
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler ajsun
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Edit Url by Regex",
    "commands": {
        "run-edit-url": {
            "suggested_key": {
                "default": "Alt+4"
            },
            "description": "Edit Url by Regex"
        },
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+3",
                "mac": "Alt+3",
                "chromeos": "Alt+3",
                "linux": "Alt+3"
            }
        }
    },
    "description": "Edit Url by Regex",
    "version": "1.3.0.0",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "action": {
        "default_icon": "\/icon.png",
        "icons": {
            "96": "\/icon.png"
        },
        "default_popup": "\/popup.html"
    },
    "icons": {
        "96": "\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "\/content.js"
            ]
        }
    ]
}