Tree Explorer for Github
Show the file tree for PR's and commits
What is Tree Explorer for Github?
Tree Explorer for Github is a Chrome extension developed by Fabio Picheli, and its main feature is "Show the file tree for PR's and commits".
Extension Screenshots
Download Tree Explorer for Github Extension CRX File
Download Tree Explorer for Github extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Improve GitHub tree explorer adding a file tree on PR's and commits Contribute: https://github.com/picheli20/github-code-tree
Extension Basic Information
Name | Tree Explorer for Github |
ID | caffoilocbbhnkdlpdcfanpbeholjdii |
Official URL | https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii |
Description | Show the file tree for PR's and commits |
File Size | 43.13 KB |
Installation Count | 552 |
Current Version | 1.4.1 |
Last Updated | 2020-12-15 |
Publish Date | 2019-04-02 |
Rating | 4.91/5 Total 11 Ratings |
Developer | Fabio Picheli |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |