Github Open With
Open your Github repository with 3rd party web IDEs
Github Open Withとは何ですか?
Github Open Withはnirによって開発されたChromeの拡張機能で、その主な機能は「Open your Github repository with 3rd party web IDEs」です。
拡張機能のスクリーンショット
Github Open With拡張機能のCRXファイルをダウンロード
Github Open With拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome extension that helps you open Github repositories in a different 3rd party IDES. When navigating to any github repository, you can click on the green code button and see new options: - Open in Github Dev - Open in Github1s - Open in StackBlitz - Open in CodeSandbox
拡張機能の基本情報
名前 | Github Open With |
ID | dggpihfahccepeedgkckjlcfgnfbjofe |
公式URL | https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe |
説明 | Open your Github repository with 3rd party web IDEs |
ファイルサイズ | 11.29 KB |
インストール数 | 194 |
現在のバージョン | 1.2.0 |
最終更新日 | 2023-09-19 |
公開日 | 2021-06-12 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | nir |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/nirtamir2/github-open-repository-with |
ヘルプページのURL | https://github.com/nirtamir2/github-open-repository-with |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Github Open With", "version": "1.2.0", "description": "Open your Github repository with 3rd party web IDEs", "author": "Nir Tamir", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with", "content_scripts": [ { "matches": [ "http:\/\/*.github.com\/*\/*", "https:\/\/*.github.com\/*\/*" ], "all_frames": true, "js": [ "contentScript.js" ] } ] } |