GitHub Repository Size
Automatically adds repository size to GitHub's repository summary
GitHub Repository Sizeとは何ですか?
GitHub Repository Sizeはhttps://harshjv.comによって開発されたChromeの拡張機能で、その主な機能は「Automatically adds repository size to GitHub's repository summary」です。
拡張機能のスクリーンショット
GitHub Repository Size拡張機能のCRXファイルをダウンロード
GitHub Repository Size拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
## 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 拡張機能の基本情報
| 名前 | |
| ID | apnjnioapinblneaedefcnopcjepgkci |
| 公式URL | https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci |
| 説明 | Automatically adds repository size to GitHub's repository summary |
| ファイルサイズ | 12.9 KB |
| インストール数 | 20,000 |
| 現在のバージョン | 0.6.0 |
| 最終更新日 | 2020-06-26 |
| 公開日 | 2020-06-26 |
| 評価 | 4.39/5 合計 80 レビュー |
| 開発者 | https://harshjv.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/harshjv/github-repo-size |
| ヘルプページのURL | https://github.com/harshjv/github-repo-size/issues |
| 対応言語 | 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"
}
} | |