Domain Switcher
Easily switch domains between development, staging, production or other environments of projects.
Qu'est-ce que Domain Switcher ?
Domain Switcher est une extension Chrome développée par Alexander Pape, et sa fonction principale est "Easily switch domains between development, staging, production or other environments of projects.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Domain Switcher
Téléchargez les fichiers d'extension Domain Switcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Domain Switcher |
ID | bcgpoogiobjioebmbafkdaekndlknmdf |
URL Officiel | https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf |
Description | Easily switch domains between development, staging, production or other environments of projects. |
Taille du Fichier | 446 KB |
Nombre d'Installations | 105 |
Version Actuelle | 1.1.2 |
Dernière Mise à Jour | 2020-08-26 |
Date de Publication | 2020-07-21 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Alexander Pape |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Macavity/domain-switcher-extension |
URL de la Page d'Aide | https://github.com/Macavity/domain-switcher-extension/issues |
Langues Prises en Charge | 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" ] } |