Github Activity Checker

Checks the activity level of GitHub projects

Github Activity Checkerคืออะไร?

Github Activity Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Florian Laurent และคุณลักษณะหลักของมันคือ "Checks the activity level of GitHub projects"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Activity Checker

ดาวน์โหลดไฟล์ส่วนขยาย Github Activity Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a clear activity indicator when browsing GitHub project pages.

It's often unclear when looking at a GitHub project how much *recent activity* has occurred. 

You can check the activity graph, but it's not visible from the project main page and takes times to load.

Sometimes you can see that some files have been recently modified, but it's not obvious if it comes from active development or someone doing superficial changes.

This extension shows an indicator based on a clear metric: the number of commits done in the past 4 weeks. You can see the precise number of commits by hovering the "activity" label, and you can access the full activity graph by clicking on it.

Source (Apache 2.0):
https://github.com/MasterScrat/GithubActivityChecker                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Github Activity Checker Github Activity Checker
ID agebcpekpbkaibjghgakombjjkefmcol
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/github-activity-checker/agebcpekpbkaibjghgakombjjkefmcol
คำอธิบาย Checks the activity level of GitHub projects
ขนาดไฟล์ 93.82 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Florian Laurent
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Activity Checker",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Checks the activity level of GitHub projects",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*",
                "http:\/\/github.com\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/lodash.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}