GitHub Repository Size
Automatically adds repository size to GitHub's repository summary
Τι είναι το GitHub Repository Size;
Το GitHub Repository Size είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://harshjv.com, και η κύρια λειτουργία του είναι "Automatically adds repository size to GitHub's repository summary".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub Repository Size
Λήψη αρχείων επέκτασης GitHub Repository Size σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
## Now supports directory size ## Supports private repositories via Github token Follow these instructions to enable this extension on private repositories: https://github.com/harshjv/github-repo-size#private-repository For more details, visit https://github.com/harshjv/github-repo-size
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub Repository Size |
ID | apnjnioapinblneaedefcnopcjepgkci |
Επίσημο URL | https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci |
Περιγραφή | Automatically adds repository size to GitHub's repository summary |
Μέγεθος Αρχείου | 12.9 KB |
Αριθμός Εγκαταστάσεων | 20,000 |
Τρέχουσα Έκδοση | 0.6.0 |
Τελευταία Ενημέρωση | 2020-06-26 |
Ημερομηνία Δημοσίευσης | 2020-06-26 |
Αξιολόγηση | 4.39/5 Συνολικά 80 Αξιολογήσεις |
Προγραμματιστής | https://harshjv.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/harshjv/github-repo-size |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/harshjv/github-repo-size/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Repository Size", "version": "0.6.0", "manifest_version": 2, "description": "Automatically adds repository size to GitHub's repository summary", "homepage_url": "https:\/\/github.com\/harshjv\/github-repo-size", "author": "Harsh Vakharia", "icons": { "16": "icons\/ghrs16.png", "48": "icons\/ghrs48.png", "128": "icons\/ghrs128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/inject.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": { "16": "icons\/ghrs16.png", "48": "icons\/ghrs48.png", "128": "icons\/ghrs128.png" }, "default_title": "GitHub Repository Size: Click to set\/remove access token" } } |