Tree Explorer for Github
Show the file tree for PR's and commits
Wat is Tree Explorer for Github?
Tree Explorer for Github is een Chrome-extensie ontwikkeld door Fabio Picheli, en de belangrijkste functie is "Show the file tree for PR's and commits".
Extensie Screenshots
Download het CRX-bestand van de extensie Tree Explorer for Github
Download Tree Explorer for Github-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Improve GitHub tree explorer adding a file tree on PR's and commits Contribute: https://github.com/picheli20/github-code-tree
Basisinformatie over de Extensie
Naam | Tree Explorer for Github |
ID | caffoilocbbhnkdlpdcfanpbeholjdii |
Officiële URL | https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii |
Beschrijving | Show the file tree for PR's and commits |
Bestandsgrootte | 43.13 KB |
Aantal Installaties | 552 |
Huidige Versie | 1.4.1 |
Laatst Bijgewerkt | 2020-12-15 |
Publicatiedatum | 2019-04-02 |
Beoordeling | 4.91/5 Totaal 11 Beoordelingen |
Ontwikkelaar | Fabio Picheli |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |