Repositree
Browser Extension that helps to explore Github repository
Τι είναι το Repositree;
Το Repositree είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον saudchougle, και η κύρια λειτουργία του είναι "Browser Extension that helps to explore Github repository".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Repositree
Λήψη αρχείων επέκτασης Repositree σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Ctrl + B Toggle Side Bar Visibility Features - Clean UI - IDE-like code tree for GitHub (Public and Private) repositories. - Left & Right Dock Location. - Resizable Layout. - Github Light, Dark, Dimmed & Dark high contrast themes. - Bookmark - github1s(VSCode) mode. - More Feature Coming Soon... Privacy Policy - Repositree doesn't share, collect your data at all. - GitHub Access Token or GitHub Personal Access Token is required only when you access private repositories or exceed the GitHub API rate limit. - Repositree store token in your chrome extension storage, not in the localStorage and use only to authenticate with the GitHub.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Repositree |
ID | lafjldoccjnjlcmdhmniholdpjkbgajo |
Επίσημο URL | https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo |
Περιγραφή | Browser Extension that helps to explore Github repository |
Μέγεθος Αρχείου | 314 KB |
Αριθμός Εγκαταστάσεων | 146 |
Τρέχουσα Έκδοση | 1.6.2 |
Τελευταία Ενημέρωση | 2021-07-05 |
Ημερομηνία Δημοσίευσης | 2020-11-13 |
Αξιολόγηση | 5.00/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | saudchougle |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/chouglesaud/repositree |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/chouglesaud/repositree |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Repositree", "author": "Saud Chougle", "minimum_chrome_version": "60", "permissions": [ "storage", "https:\/\/api.github.com\/*" ], "version": "1.6.2", "description": "Browser Extension that helps to explore Github repository", "content_scripts": [ { "run_at": "document_start", "css": [ ".\/style.css" ], "js": [ ".\/content.js" ], "matches": [ "https:\/\/github.com\/*\/*" ] } ] } |