Domain Switcher

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

Vad är Domain Switcher?

Domain Switcher är en Chrome-tillägg utvecklad av Alexander Pape, och dess huvudfunktion är "Easily switch domains between development, staging, production or other environments of projects.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Domain Switcher-förlängningens CRX-fil

Ladda ner Domain Switcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Domain Switcher Domain Switcher
ID bcgpoogiobjioebmbafkdaekndlknmdf
Officiell webbadress https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf
Beskrivning Easily switch domains between development, staging, production or other environments of projects.
Filstorlek 446 KB
Antal Installationer 105
Aktuell Version 1.1.2
Senast Uppdaterad 2020-08-26
Publiceringsdatum 2020-07-21
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Alexander Pape
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Macavity/domain-switcher-extension
Hjälpsida URL https://github.com/Macavity/domain-switcher-extension/issues
Stödda Språk 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"
    ]
}