Switch environment

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

O que é Switch environment?

Switch environment é uma extensão do Chrome desenvolvida por matiascarranza, e sua principal característica é "Switch from production to development environment, opening the same url into dev environment such as in localhost.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Switch environment

Baixe arquivos de extensão Switch environment no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Switch environment Switch environment
ID mapjpddlaejfkdflanpgdpbemkemhkhn
URL Oficial https://chromewebstore.google.com/detail/switch-environment/mapjpddlaejfkdflanpgdpbemkemhkhn
Descrição Switch from production to development environment, opening the same url into dev environment such as in localhost.
Tamanho do Arquivo 43 KB
Contagem de Instalações 99
Versão Atual 3.0.0
Última Atualização 2013-09-17
Data de Publicação 2013-09-17
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor matiascarranza
Tipo de Pagamento free
Idiomas Suportados 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"
}