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 |
Eメール | [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" ] } |