Domain Switcher

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

Domain Switcher란 무엇입니까?

Domain Switcher은(는) Alexander Pape에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily switch domains between development, staging, production or other environments of projects."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Domain Switcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}