Code tours Github
Allows to run code tours in your browser
Code tours Githubとは何ですか?
Code tours GithubはZipperによって開発されたChromeの拡張機能で、その主な機能は「Allows to run code tours in your browser」です。
拡張機能のスクリーンショット
Code tours Github拡張機能のCRXファイルをダウンロード
Code tours Github拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds the "code tours" feature directly in github. See https://marketplace.visualstudio.com/items?itemName=vsls-contrib.codetour It allows you to explore the code of a repository step by step, guided by previously written Code Tours.
拡張機能の基本情報
名前 | Code tours Github |
ID | emmipndjppboloecpfgnckbkcehhhpkc |
公式URL | https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc |
説明 | Allows to run code tours in your browser |
ファイルサイズ | 42.82 KB |
インストール数 | 76 |
現在のバージョン | 0.0.6 |
最終更新日 | 2021-04-09 |
公開日 | 2020-11-30 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Zipper |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/doctolib/code-tours-github |
ヘルプページのURL | https://github.com/doctolib/code-tours-github/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Code tours Github", "version": "0.0.6", "description": "Allows to run code tours in your browser", "manifest_version": 2, "minimum_chrome_version": "60", "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/render.githubusercontent.com\/*", "https:\/\/github.com\/*" ], "icons": { "128": "code-tour.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "github.js" ] } ], "web_accessible_resources": [ "code-tour.png" ] } |