Domain Switcher

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

Что такое Domain Switcher?

Domain Switcher - это расширение Chrome, разработанное Alexander Pape, и его основная функция - "Easily switch domains between development, staging, production or other environments of projects.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Domain Switcher

Скачайте файлы расширений Domain Switcher в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Domain Switcher Domain Switcher
ID bcgpoogiobjioebmbafkdaekndlknmdf
Официальный URL https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf
Описание Easily switch domains between development, staging, production or other environments of projects.
Размер файла 446 KB
Количество установок 105
Текущая Версия 1.1.2
Последнее Обновление 2020-08-26
Дата публикации 2020-07-21
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Alexander Pape
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Macavity/domain-switcher-extension
URL страницы помощи https://github.com/Macavity/domain-switcher-extension/issues
Поддерживаемые языки 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"
    ]
}