Domain Switcher

Easily switch domains between development, staging, production or other environments of projects.

¿Qué es Domain Switcher?

Domain Switcher es una extensión de Chrome desarrollada por Alexander Pape, y su función principal es "Easily switch domains between development, staging, production or other environments of projects.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Domain Switcher

Descarga archivos de extensión Domain Switcher 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

                        As a developer, it can be a hassle to switch between various environments (e.g. dev, staging, prod). This extension is designed to allow the developer to quickly swap environments when they are on a page while keeping their path intact.

This extension is open-source and hosted on GitHub. If you find an issue, help out by posting it there as an issue or submit a pull request. 
https://github.com/Macavity/domain-switcher-extension                    

Información Básica de la Extensión

Nombre Domain Switcher Domain Switcher
ID bcgpoogiobjioebmbafkdaekndlknmdf
URL Oficial https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf
Descripción Easily switch domains between development, staging, production or other environments of projects.
Tamaño del Archivo 446 KB
Cantidad de Instalaciones 105
Versión Actual 1.1.2
Última Actualización 2020-08-26
Fecha de Publicación 2020-07-21
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Alexander Pape
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Macavity/domain-switcher-extension
URL de la Página de Ayuda https://github.com/Macavity/domain-switcher-extension/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Domain Switcher",
    "description": "Easily switch domains between development, staging, production or other environments of projects.",
    "version": "1.1.2",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "24": "icons\/icon-24.png",
            "32": "icons\/icon-32.png"
        },
        "default_title": "Domain Switcher",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options\/options.html",
    "permissions": [
        "tabs",
        "downloads"
    ]
}