Tree Explorer for Github
Show the file tree for PR's and commits
Was ist Tree Explorer for Github?
Tree Explorer for Github ist eine Chrome-Erweiterung, die von Fabio Picheli entwickelt wurde, und ihr Hauptmerkmal ist "Show the file tree for PR's and commits".
Erweiterungsscreenshots
Tree Explorer for Github-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tree Explorer for Github-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Improve GitHub tree explorer adding a file tree on PR's and commits Contribute: https://github.com/picheli20/github-code-tree
Grundlegende Informationen zur Erweiterung
Name | Tree Explorer for Github |
ID | caffoilocbbhnkdlpdcfanpbeholjdii |
Offizielle URL | https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii |
Beschreibung | Show the file tree for PR's and commits |
Dateigröße | 43.13 KB |
Installationsanzahl | 552 |
Aktuelle Version | 1.4.1 |
Letztes Update | 2020-12-15 |
Veröffentlichungsdatum | 2019-04-02 |
Bewertung | 4.91/5 Insgesamt 11 Bewertungen |
Entwickler | Fabio Picheli |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |