Tree Explorer for Github
Show the file tree for PR's and commits
Tree Explorer for Githubとは何ですか?
Tree Explorer for GithubはFabio Picheliによって開発されたChromeの拡張機能で、その主な機能は「Show the file tree for PR's and commits」です。
拡張機能のスクリーンショット
Tree Explorer for Github拡張機能のCRXファイルをダウンロード
Tree Explorer for Github拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Improve GitHub tree explorer adding a file tree on PR's and commits Contribute: https://github.com/picheli20/github-code-tree
拡張機能の基本情報
名前 | Tree Explorer for Github |
ID | caffoilocbbhnkdlpdcfanpbeholjdii |
公式URL | https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii |
説明 | Show the file tree for PR's and commits |
ファイルサイズ | 43.13 KB |
インストール数 | 552 |
現在のバージョン | 1.4.1 |
最終更新日 | 2020-12-15 |
公開日 | 2019-04-02 |
評価 | 4.91/5 合計 11 レビュー |
開発者 | Fabio Picheli |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tree Explorer for Github", "version": "1.4.1", "description": "Show the file tree for PR's and commits", "manifest_version": 2, "permissions": [ "activeTab", "storage", "https:\/\/github.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "app\/popup\/index.html" }, "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "lib\/jquery-1.11.1.min.js", "app\/background\/icons.js", "app\/background\/style.js", "app\/background\/index.js" ] } ] } |