Switch environment

Switch from production to development environment, opening the same url into dev environment such as in localhost.

Switch environmentとは何ですか?

Switch environmentはmatiascarranzaによって開発されたChromeの拡張機能で、その主な機能は「Switch from production to development environment, opening the same url into dev environment such as in localhost.」です。

拡張機能のスクリーンショット

screenshot

Switch environment拡張機能のCRXファイルをダウンロード

Switch environment拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        It's a Developer extension. Clicking on Switch Env icon, will open the same URL but in the development environment that is configured. 
First, you have to configure in the option page the 'switch' for an specific URL and his development URL. For example: twitter.com to http://localhost:8080/some-path

So, when you're in http://twitter.com/matiascarranza, click on the icon and a new tab is opened with the url http://localhost:8080/some-path/matiascarranza.

Also, you can change the "localhost" to an especific URL or domain, such as 192.0.0.1 or dev.example.com

The port and path options are optional.                    

拡張機能の基本情報

名前 Switch environment Switch environment
ID mapjpddlaejfkdflanpgdpbemkemhkhn
公式URL https://chromewebstore.google.com/detail/switch-environment/mapjpddlaejfkdflanpgdpbemkemhkhn
説明 Switch from production to development environment, opening the same url into dev environment such as in localhost.
ファイルサイズ 43 KB
インストール数 99
現在のバージョン 3.0.0
最終更新日 2013-09-17
公開日 2013-09-17
評価 3.67/5 合計 3 レビュー
開発者 matiascarranza
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Switch environment",
    "description": "Switch from production to development environment, opening the same url into dev environment such as in localhost.",
    "version": "3.0.0",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "parseuri.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Switch!",
        "default_icon": "code_48x52.png"
    },
    "icons": {
        "48": "code_48x52.png",
        "128": "code_124x135.png"
    },
    "options_page": "options.html"
}