Domain Switcher
Easily switch domains between development, staging, production or other environments of projects.
什么是Domain Switcher?
Domain Switcher是由Alexander Pape开发的Chrome扩展程序,该扩展的主要功能是“Easily switch domains between development, staging, production or other environments of projects.”。
扩展截图
下载Domain Switcher扩展crx文件
下载Domain Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Domain Switcher |
ID | bcgpoogiobjioebmbafkdaekndlknmdf |
官方URL | https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf |
简介 | Easily switch domains between development, staging, production or other environments of projects. |
文件大小 | 446 KB |
安装次数 | 105 |
当前版本 | 1.1.2 |
更新时间 | 2020-08-26 |
上架时间 | 2020-07-21 |
评分 | 5.00/5 共2次评分 |
开发者 | Alexander Pape |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Macavity/domain-switcher-extension |
帮助页面URL | https://github.com/Macavity/domain-switcher-extension/issues |
支持的语言 | 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" ] } |