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
官方網址 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"
}