GitHub Repository Size
Automatically adds repository size to GitHub's repository summary
Hvad er GitHub Repository Size?
GitHub Repository Size er en Chrome-udvidelse udviklet af https://harshjv.com, og dens hovedfunktion er "Automatically adds repository size to GitHub's repository summary".
Udvidelsesskærmbilleder
Download GitHub Repository Size-udvidelses-CRX-fil
Download GitHub Repository Size-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
## 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
Grundlæggende oplysninger om udvidelsen
Navn | GitHub Repository Size |
ID | apnjnioapinblneaedefcnopcjepgkci |
Officiel URL | https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci |
Beskrivelse | Automatically adds repository size to GitHub's repository summary |
Filstørrelse | 12.9 KB |
Antal Installationer | 20,000 |
Nuværende Version | 0.6.0 |
Senest Opdateret | 2020-06-26 |
Udgivelsesdato | 2020-06-26 |
Bedømmelse | 4.39/5 Samlet 80 Bedømmelser |
Udvikler | https://harshjv.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/harshjv/github-repo-size |
Hjælpeside-URL | https://github.com/harshjv/github-repo-size/issues |
Understøttede Sprog | 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" } } |