GitHub Repository Size
Automatically adds repository size to GitHub's repository summary
Qu'est-ce que GitHub Repository Size ?
GitHub Repository Size est une extension Chrome développée par https://harshjv.com, et sa fonction principale est "Automatically adds repository size to GitHub's repository summary".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Repository Size
Téléchargez les fichiers d'extension GitHub Repository Size au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
## 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
Informations de Base sur l'Extension
Nom | GitHub Repository Size |
ID | apnjnioapinblneaedefcnopcjepgkci |
URL Officiel | https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci |
Description | Automatically adds repository size to GitHub's repository summary |
Taille du Fichier | 12.9 KB |
Nombre d'Installations | 20,000 |
Version Actuelle | 0.6.0 |
Dernière Mise à Jour | 2020-06-26 |
Date de Publication | 2020-06-26 |
Évaluation | 4.39/5 Total 80 Évaluations |
Développeur | https://harshjv.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/harshjv/github-repo-size |
URL de la Page d'Aide | https://github.com/harshjv/github-repo-size/issues |
Langues Prises en Charge | 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" } } |