GitHub Repository Size
Automatically adds repository size to GitHub's repository summary
ما هو GitHub Repository Size؟
GitHub Repository Size هو إضافة Chrome تم تطويرها بواسطة https://harshjv.com، والميزة الرئيسية لها هي "Automatically adds repository size to GitHub's repository summary".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub Repository Size
قم بتنزيل ملفات الامتداد GitHub Repository Size بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
## 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
معلومات أساسية عن التمديد
الاسم | GitHub Repository 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 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/harshjv/github-repo-size |
عنوان صفحة المساعدة | 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" } } |