Domain Switcher
Easily switch domains between development, staging, production or other environments of projects.
Co to jest Domain Switcher?
Domain Switcher to rozszerzenie Chrome opracowane przez Alexander Pape, a jego główną funkcją jest „Easily switch domains between development, staging, production or other environments of projects.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Domain Switcher
Pobierz pliki rozszerzeń Domain Switcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Domain Switcher |
ID | bcgpoogiobjioebmbafkdaekndlknmdf |
Oficjalny URL | https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf |
Opis | Easily switch domains between development, staging, production or other environments of projects. |
Rozmiar pliku | 446 KB |
Liczba instalacji | 105 |
Aktualna Wersja | 1.1.2 |
Ostatnia Aktualizacja | 2020-08-26 |
Data Publikacji | 2020-07-21 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Alexander Pape |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Macavity/domain-switcher-extension |
Adres URL Strony Pomocy | https://github.com/Macavity/domain-switcher-extension/issues |
Obsługiwane Języki | 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" ] } |