Domain Switcher

Simplify web development by easily switching domains between specified URL groups.

Domain Switcher란 무엇입니까?

Domain Switcher은(는) https://shanson.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simplify web development by easily switching domains between specified URL groups."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        As a developer, it can be a hassle to switch between various environments (e.g. dev, uat, prod). This extension is designed to allow the developer to quickly swap environments when they are on a page while keeping their path intact.

Domain Switcher allows you to organize the environments for the various projects you work on. Simply create a "project" on the options page and enter the associated domains for the various environments for the project. We'll do the rest, and you'll be able to simply switch between environments by clicking the arrow icon in your address bar when you are on a page that matches one of your project environments.

For example, if you are working on a project about "coffee", you could enter environments: "localhost:3000", "test.coffee.com", "coffee.com". Then, when you are on any of these domains, you will have an icon in your URL bar that will allow you to switch to the other environments. The path of the page you are on is preserved in the URL.

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/stevehanson/domain-switcher-chrome                    

확장 프로그램 기본 정보

이름 Domain Switcher Domain Switcher
ID lbehdhpgigdlinfkidifkbhjnaglfojc
공식 URL https://chromewebstore.google.com/detail/domain-switcher/lbehdhpgigdlinfkidifkbhjnaglfojc
설명 Simplify web development by easily switching domains between specified URL groups.
파일 크기 1.05 MB
설치 횟수 2,759
현재 버전 0.6.1
최근 업데이트 2016-05-24
출시 날짜 2016-05-24
평점 4.59/5 총 29 개의 평점
개발자 https://shanson.co
결제 유형 free
확장 프로그램 웹 사이트 http://shanson.co
도움말 페이지 URL https://github.com/stevehanson/domain-switcher-chrome/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.6.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Domain Switcher",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs"
    ]
}