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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        ]
    }
}