Open in StackBlitz
Adds an open in StackBlitz button to Github Repos
Open in StackBlitzとは何ですか?
Open in StackBlitzはBaljeet Singhによって開発されたChromeの拡張機能で、その主な機能は「Adds an open in StackBlitz button to Github Repos」です。
拡張機能のスクリーンショット
Open in StackBlitz拡張機能のCRXファイルをダウンロード
Open in StackBlitz拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds a button to all github repos that will open that repo in StackBlitz in a new window
拡張機能の基本情報
名前 | Open in StackBlitz |
ID | biocgmgmpiglbdffjdbciegmpfnmfgmb |
公式URL | https://chromewebstore.google.com/detail/open-in-stackblitz/biocgmgmpiglbdffjdbciegmpfnmfgmb |
説明 | Adds an open in StackBlitz button to Github Repos |
ファイルサイズ | 21.46 KB |
インストール数 | 213 |
現在のバージョン | 1.0.1 |
最終更新日 | 2018-10-20 |
公開日 | 2018-10-20 |
開発者 | Baljeet Singh |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open in StackBlitz", "short_name": "StackBlitz", "version": "1.0.1", "description": "Adds an open in StackBlitz button to Github Repos", "homepage_url": "https:\/\/stackblitz.io", "icons": { "16": ".\/assets\/icon16.png", "48": ".\/assets\/icon48.png", "128": ".\/assets\/icon128.png" }, "content_scripts": [ { "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/github.com\/*" ] } ] } |