Github quarterly contributions
Adds a quarterly stats button on a user's landing page
ما هو Github quarterly contributions؟
Github quarterly contributions هو إضافة Chrome تم تطويرها بواسطة Eric Bidelman، والميزة الرئيسية لها هي "Adds a quarterly stats button on a user's landing page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Github quarterly contributions
قم بتنزيل ملفات الامتداد Github quarterly contributions بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Adds a "Add previous quarter" button to a user's Github landing page (see screenshot). Pressing this button fetches the last quarter worth of commits, prs, and issues for the user. Subsequent presses goes back additional quarters.
Note: this will include private commits/prs/issues if you are the current logged in user. Viewing someone else's page will only return their public activity.
Source: https://github.com/ebidel/github-quarterly-stats معلومات أساسية عن التمديد
| الاسم | |
| ID | cinfjnlgpbolahlckdnljecnaagecaen |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen |
| الوصف | Adds a quarterly stats button on a user's landing page |
| حجم الملف | 670 KB |
| عدد التثبيتات | 27 |
| النسخة الحالية | 0.0.3 |
| آخر تحديث | 2014-09-29 |
| تاريخ النشر | 2014-09-29 |
| المطور | Eric Bidelman |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/ebidel/github-quarterly-stats |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github quarterly contributions",
"version": "0.0.3",
"manifest_version": 2,
"description": "Adds a quarterly stats button on a user's landing page",
"icons": {
"16": "icons\/githubicon.png",
"48": "icons\/githubicon.png",
"128": "icons\/githubicon.png"
},
"permissions": [
"https:\/\/github.com\/*",
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/content.js",
"bower_components\/moment\/min\/moment.min.js"
]
}
]
} | |