Switch environment
Switch from production to development environment, opening the same url into dev environment such as in localhost.
Qu'est-ce que Switch environment ?
Switch environment est une extension Chrome développée par matiascarranza, et sa fonction principale est "Switch from production to development environment, opening the same url into dev environment such as in localhost.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Switch environment
Téléchargez les fichiers d'extension Switch environment 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
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.
Informations de Base sur l'Extension
Nom | Switch environment |
ID | mapjpddlaejfkdflanpgdpbemkemhkhn |
URL Officiel | https://chromewebstore.google.com/detail/switch-environment/mapjpddlaejfkdflanpgdpbemkemhkhn |
Description | Switch from production to development environment, opening the same url into dev environment such as in localhost. |
Taille du Fichier | 43 KB |
Nombre d'Installations | 99 |
Version Actuelle | 3.0.0 |
Dernière Mise à Jour | 2013-09-17 |
Date de Publication | 2013-09-17 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | matiascarranza |
Type de Paiement | free |
Langues Prises en Charge | 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" } |