GitHub Repository Size
Automatically adds repository size to GitHub's repository summary
What is GitHub Repository Size?
GitHub Repository Size is a Chrome extension developed by https://harshjv.com, and its main feature is "Automatically adds repository size to GitHub's repository summary".
Extension Screenshots
Download GitHub Repository Size Extension CRX File
Download GitHub Repository Size extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
## 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
Extension Basic Information
Name | GitHub Repository Size |
ID | apnjnioapinblneaedefcnopcjepgkci |
Official URL | https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci |
Description | Automatically adds repository size to GitHub's repository summary |
File Size | 12.9 KB |
Installation Count | 20,000 |
Current Version | 0.6.0 |
Last Updated | 2020-06-26 |
Publish Date | 2020-06-26 |
Rating | 4.39/5 Total 80 Ratings |
Developer | https://harshjv.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/harshjv/github-repo-size |
Help Page URL | https://github.com/harshjv/github-repo-size/issues |
Supported Languages | 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" } } |