Domain Switcher
Easily switch domains between development, staging, production or other environments of projects.
O que é Domain Switcher?
Domain Switcher é uma extensão do Chrome desenvolvida por Alexander Pape, e sua principal característica é "Easily switch domains between development, staging, production or other environments of projects.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Domain Switcher
Baixe arquivos de extensão Domain Switcher 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
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
Informações Básicas da Extensão
Nome | Domain Switcher |
ID | bcgpoogiobjioebmbafkdaekndlknmdf |
URL Oficial | https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf |
Descrição | Easily switch domains between development, staging, production or other environments of projects. |
Tamanho do Arquivo | 446 KB |
Contagem de Instalações | 105 |
Versão Atual | 1.1.2 |
Última Atualização | 2020-08-26 |
Data de Publicação | 2020-07-21 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Alexander Pape |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Macavity/domain-switcher-extension |
URL da Página de Ajuda | https://github.com/Macavity/domain-switcher-extension/issues |
Idiomas Suportados | 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" ] } |