Edit Url by Regex

Edit Url by Regex

Qu'est-ce que Edit Url by Regex ?

Edit Url by Regex est une extension Chrome développée par ajsun, et sa fonction principale est "Edit Url by Regex".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Edit Url by Regex

Téléchargez les fichiers d'extension Edit Url by Regex au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Edit Url by Regex Edit Url by Regex
ID ofhioacmkjbbalfidehfdecjfnllhdno
URL Officiel https://chromewebstore.google.com/detail/edit-url-by-regex/ofhioacmkjbbalfidehfdecjfnllhdno
Description Edit Url by Regex
Taille du Fichier 52.6 KB
Nombre d'Installations 80
Version Actuelle 1.3.0.0
Dernière Mise à Jour 2022-05-03
Date de Publication 2022-03-25
Évaluation 5.00/5 Total 6 Évaluations
Développeur ajsun
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}