GitHub Repository Size
Automatically adds repository size to GitHub's repository summary
Wat is GitHub Repository Size?
GitHub Repository Size is een Chrome-extensie ontwikkeld door https://harshjv.com, en de belangrijkste functie is "Automatically adds repository size to GitHub's repository summary".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub Repository Size
Download GitHub Repository Size-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
## 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 Basisinformatie over de Extensie
| Naam | |
| ID | apnjnioapinblneaedefcnopcjepgkci |
| Officiële URL | https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci |
| Beschrijving | Automatically adds repository size to GitHub's repository summary |
| Bestandsgrootte | 12.9 KB |
| Aantal Installaties | 20,000 |
| Huidige Versie | 0.6.0 |
| Laatst Bijgewerkt | 2020-06-26 |
| Publicatiedatum | 2020-06-26 |
| Beoordeling | 4.39/5 Totaal 80 Beoordelingen |
| Ontwikkelaar | https://harshjv.com |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/harshjv/github-repo-size |
| Help Pagina-URL | https://github.com/harshjv/github-repo-size/issues |
| Ondersteunde Talen | 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"
}
} | |