Github Star Count

When you view an awesome page, add star count to github repository links.

Github Star Countคืออะไร?

Github Star Count เป็นส่วนขยายของ Chrome ที่พัฒนาโดย progzhangchao และคุณลักษณะหลักของมันคือ "When you view an awesome page, add star count to github repository links."

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

screenshot
screenshot

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

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

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

                        When you view an awesome page on github site,  such as https://github.com/fffaraz/awesome-cpp, click the extension button, it will add star count to all github repository links on the page.                    

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

ชื่อ Github Star Count Github Star Count
ID jahogeehepfohgakggfeeimokcgnmdid
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid
คำอธิบาย When you view an awesome page, add star count to github repository links.
ขนาดไฟล์ 7.4 KB
จำนวนการติดตั้ง 210
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-03-10
วันที่เผยแพร่ 2021-03-09
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา progzhangchao
อีเมล [email protected]
ประเภทการชำระเงิน in_app
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Star Count",
    "version": "1.0",
    "description": "When you view an awesome page, add star count to github repository links.",
    "author": "progzhangchao",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}