Contributors on Github

Show Contributor Stats on Github

Contributors on Githubคืออะไร?

Contributors on Github เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Henry Zhu และคุณลักษณะหลักของมันคือ "Show Contributor Stats on Github"

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

screenshot

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

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

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

                        An extension for Github that might be helpful for maintainers.

It shows if it's a contributors first PR, or how many issues/PRs they have made to that specific repo.

It caches the data and adds a button to update the info.

You can optionally use oauth or supply a access token with the "public_repo" scope to get 30 requests/min instead of 10.

Permissions:
- "https://github.com/*/*": to be able to inject data into github
  - The [content script](src/content.js) was matching `"https://github.com/*/*/pull/*` which is correct, but if you start from the hompage, then the script won't ever be injected since github is using pushState to change urls. Now it will match `https://github.com` and then check for the specific url.
- "storage", to store access token, cache user PR data.
- "identity", to create an oauth request window.                    

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

ชื่อ Contributors on Github Contributors on Github
ID cjbacdldhllelehomkmlniifaojgaeph
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/contributors-on-github/cjbacdldhllelehomkmlniifaojgaeph
คำอธิบาย Show Contributor Stats on Github
ขนาดไฟล์ 15.6 KB
จำนวนการติดตั้ง 314
เวอร์ชันปัจจุบัน 21.2.21.1941
อัปเดตครั้งล่าสุด 2021-02-21
วันที่เผยแพร่ 2019-10-12
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Henry Zhu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/hzoo/contributors-on-github
URL หน้าช่วยเหลือ https://github.com/hzoo/contributors-on-github
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Contributors on Github",
    "description": "Show Contributor Stats on Github",
    "short_name": "Stats on Github",
    "homepage_url": "https:\/\/github.com\/hzoo\/contributors-on-github",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwnKOOu3IkB\/A55pdBjEV988NSgMzl8KDo4vZeCz9uuWEyYRLOF63\/i8rm4ujFgGm+sfOqIm7u3wNKmgIfEdZwdswWeVC\/0\/Gra4frixoiQcsykapk7bKFAuFDA06p4jHmmfZZs32bujZaqRDE9Fm4lJ4+otikCmZodHf5oxHu1NdGVSlyiFDpqh7wkg6zhUvOU5vr2bC\/Ot5EMAMEtv6oHW5MAflxnLvERc0pK2abVRWvXBM9EbsekSa+d4WwJ2tMDFOe2KDM\/FS6+6Jjhm\/6SKDc30b+o9Ts8ueDNg8anZ0bOYvzdFtTZYqyQ18zYV252UKDOAgg1rhJkUe9RvNnwIDAQAB",
    "version": "21.2.21.1941",
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*",
        "https:\/\/api.github.com\/*",
        "storage",
        "identity"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "minimum_chrome_version": "80",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "storage.js",
                "vendor\/github-injection.js",
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "74.0"
        }
    }
}