Tree Explorer for Github
Show the file tree for PR's and commits
Vad är Tree Explorer for Github?
Tree Explorer for Github är en Chrome-tillägg utvecklad av Fabio Picheli, och dess huvudfunktion är "Show the file tree for PR's and commits".
Tilläggsskärmbilder
Ladda ner Tree Explorer for Github-förlängningens CRX-fil
Ladda ner Tree Explorer for Github-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Improve GitHub tree explorer adding a file tree on PR's and commits Contribute: https://github.com/picheli20/github-code-tree
Grundläggande Information om Tillägg
Namn | Tree Explorer for Github |
ID | caffoilocbbhnkdlpdcfanpbeholjdii |
Officiell webbadress | https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii |
Beskrivning | Show the file tree for PR's and commits |
Filstorlek | 43.13 KB |
Antal Installationer | 552 |
Aktuell Version | 1.4.1 |
Senast Uppdaterad | 2020-12-15 |
Publiceringsdatum | 2019-04-02 |
Betyg | 4.91/5 Totalt 11 Betyg |
Utvecklare | Fabio Picheli |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |