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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
} | |