Github-Editors
Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.
Github-Editorsとは何ですか?
Github-Editorsはtclaude94によって開発されたChromeの拡張機能で、その主な機能は「Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.」です。
拡張機能のスクリーンショット
Github-Editors拡張機能のCRXファイルをダウンロード
Github-Editors拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension improves your user experience on GitHub by adding several buttons like: - VSCode cloning - Jetbrains' Suite cloning - Open the repo on GitHub1s - Open the repo on CodeSandbox -- Report an issue or submit an improvement You can report an issue or submit an improvement (like adding support for a new editor) on Github Repository can be found here : https://github.com/tclaude94/VSCodeGithub
拡張機能の基本情報
名前 | Github-Editors |
ID | djdgcpbdkcipjeaiipndkklnfgfmegna |
公式URL | https://chromewebstore.google.com/detail/github-editors/djdgcpbdkcipjeaiipndkklnfgfmegna |
説明 | Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer. |
ファイルサイズ | 341 KB |
インストール数 | 66 |
現在のバージョン | 0.2.0 |
最終更新日 | 2021-02-15 |
公開日 | 2021-02-15 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | tclaude94 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_icon": "img\/logo.png", "default_title": "Github-Editors", "default_popup": ".\/options\/options.html" }, "content_scripts": [ { "js": [ "constants.js", "main.js" ], "matches": [ "https:\/\/github.com\/*" ] } ], "description": "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.", "manifest_version": 2, "name": "Github-Editors", "short_name": "GHE", "version": "0.2.0", "web_accessible_resources": [ "img\/*", "img\/icons\/*" ], "icons": { "128": "img\/logo.png", "16": "img\/logo.png", "48": "img\/logo.png" }, "options_ui": { "page": "\/options\/options.html", "open_in_tab": false }, "permissions": [ "storage" ] } |