Domain Switcher

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

Was ist Domain Switcher?

Domain Switcher ist eine Chrome-Erweiterung, die von Alexander Pape entwickelt wurde, und ihr Hauptmerkmal ist "Easily switch domains between development, staging, production or other environments of projects.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Domain Switcher-Erweiterungs-CRX-Datei herunterladen

Laden Sie Domain Switcher-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Domain Switcher Domain Switcher
ID bcgpoogiobjioebmbafkdaekndlknmdf
Offizielle URL https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf
Beschreibung Easily switch domains between development, staging, production or other environments of projects.
Dateigröße 446 KB
Installationsanzahl 105
Aktuelle Version 1.1.2
Letztes Update 2020-08-26
Veröffentlichungsdatum 2020-07-21
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Alexander Pape
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Macavity/domain-switcher-extension
Hilfeseite URL https://github.com/Macavity/domain-switcher-extension/issues
Unterstützte Sprachen 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"
    ]
}