Domain Switcher

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

Cos'è Domain Switcher?

Domain Switcher è un'estensione di Chrome sviluppata da Alexander Pape, e la sua funzione principale è "Easily switch domains between development, staging, production or other environments of projects.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Domain Switcher

Scarica i file di estensione Domain Switcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Domain Switcher Domain Switcher
ID bcgpoogiobjioebmbafkdaekndlknmdf
URL Ufficiale https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf
Descrizione Easily switch domains between development, staging, production or other environments of projects.
Dimensione del File 446 KB
Conteggio Installazioni 105
Versione Corrente 1.1.2
Ultimo Aggiornamento 2020-08-26
Data di Pubblicazione 2020-07-21
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Alexander Pape
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Macavity/domain-switcher-extension
URL della Pagina di Aiuto https://github.com/Macavity/domain-switcher-extension/issues
Lingue Supportate 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"
    ]
}