GitHub Repository Size
Automatically adds repository size to GitHub's repository summary
Cos'è GitHub Repository Size?
GitHub Repository Size è un'estensione di Chrome sviluppata da https://harshjv.com, e la sua funzione principale è "Automatically adds repository size to GitHub's repository summary".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Repository Size
Scarica i file di estensione GitHub Repository Size in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
## 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
Informazioni di Base sull'Estensione
Nome | GitHub Repository Size |
ID | apnjnioapinblneaedefcnopcjepgkci |
URL Ufficiale | https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci |
Descrizione | Automatically adds repository size to GitHub's repository summary |
Dimensione del File | 12.9 KB |
Conteggio Installazioni | 20,000 |
Versione Corrente | 0.6.0 |
Ultimo Aggiornamento | 2020-06-26 |
Data di Pubblicazione | 2020-06-26 |
Valutazione | 4.39/5 Totale 80 Valutazioni |
Sviluppatore | https://harshjv.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/harshjv/github-repo-size |
URL della Pagina di Aiuto | https://github.com/harshjv/github-repo-size/issues |
Lingue Supportate | 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" } } |