GitHub Repo Size
Show size summaries of GitHub repos
Τι είναι το GitHub Repo Size;
Το GitHub Repo Size είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mouiylus, και η κύρια λειτουργία του είναι "Show size summaries of GitHub repos".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub Repo Size
Λήψη αρχείων επέκτασης GitHub Repo Size σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
- 🔍 See the total size of repositories - 📁 See sizes of all individual folders and files - 🔑 Even works with your own private repositories!* Ever found yourself wishing to know the size of a repository without having to clone it first? Your wish is granted! This extension brings you a handy summary of the repository's size and its contents, all accessible directly from the repository's home page. 🚧 No More API Worries 🚧 This extension uses GitHub's API to fetch the sizes of repositories! Due to its default rate limit, this extension features a one-click Authentication service to ensure you can make all the necessary requests without any fuss. 🔑 Explore Your Private Repositories 🔑 *Get insights into your own private repositories with ease! Just utilize a GitHub Personal Access Token and the size details of your private repositories are just a few clicks away. To delve into the authentication settings, simply pin the extension and tap to open its interface! The tokens can be generated on GitHub. 🔐 Your Data Stays Yours 🔐 Your email and Personal Access Tokens are utilized solely to facilitate seamless functionality and authenticate your sessions - they're never shared, used for marketing, or accessed for any other purpose. 🌐 Open Source Code 🌐 Our code is open for inspection, use, and contribution. We believe in transparent development and welcome enhancements from the community. Browse, utilize, or improve upon our work at your leisure, and shape the way this extension evolves by bringing your own expertise and perspective. Link to the code: https://github.com/AminoffZ/github-repo-size
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub Repo Size |
ID | jpdmfnflpdgefbfkafcikmhipofhanfl |
Επίσημο URL | https://chromewebstore.google.com/detail/github-repo-size/jpdmfnflpdgefbfkafcikmhipofhanfl |
Περιγραφή | Show size summaries of GitHub repos |
Μέγεθος Αρχείου | 49.87 KB |
Αριθμός Εγκαταστάσεων | 176 |
Τρέχουσα Έκδοση | 0.2.6 |
Τελευταία Ενημέρωση | 2024-01-04 |
Ημερομηνία Δημοσίευσης | 2023-09-25 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | mouiylus |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://aminoffz.github.io/github-repo-size/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/AminoffZ/github-repo-size |
URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/AminoffZ/github-repo-size/blob/main/privacy-policy.md |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GitHub Repo Size", "author": "[email protected]", "description": "Show size summaries of GitHub repos", "version": "0.2.6", "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ "https:\/\/github.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "css": [ "content.css" ] } ], "action": { "default_popup": "index.html" }, "permissions": [ "storage", "tabs", "webNavigation" ], "background": { "service_worker": "background.js" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |