Edit Url by Regex

Edit Url by Regex

¿Qué es Edit Url by Regex?

Edit Url by Regex es una extensión de Chrome desarrollada por ajsun, y su función principal es "Edit Url by Regex".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Edit Url by Regex

Descarga archivos de extensión Edit Url by Regex en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Edit Url by Regex Edit Url by Regex
ID ofhioacmkjbbalfidehfdecjfnllhdno
URL Oficial https://chromewebstore.google.com/detail/edit-url-by-regex/ofhioacmkjbbalfidehfdecjfnllhdno
Descripción Edit Url by Regex
Tamaño del Archivo 52.6 KB
Cantidad de Instalaciones 80
Versión Actual 1.3.0.0
Última Actualización 2022-05-03
Fecha de Publicación 2022-03-25
Calificación 5.00/5 Total de 6 Calificaciones
Desarrollador ajsun
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}