GitHub Release Downloads

This extension displays the number of downloads GitHub releases have on the releases page.

ما هو GitHub Release Downloads؟

GitHub Release Downloads هو إضافة Chrome تم تطويرها بواسطة https://addshore.com، والميزة الرئيسية لها هي "This extension displays the number of downloads GitHub releases have on the releases page.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GitHub Release Downloads

قم بتنزيل ملفات الامتداد GitHub Release Downloads بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension displays the number of downloads GitHub releases have on the releases page.
Adds current download counts to the releases page on Github for custom release artifacts using the GitHub API.

GitHub tracks the number of downloads for all assets (files) that are attached to a release, but GitHub currently makes it very hard for users to get at this information.

Initial release blog post: https://addshore.com/2015/04/github-release-download-count-chrome-extension

Code: https://github.com/addshore/browser-github-release-downloads
Support me: https://www.buymeacoffee.com/addshore                    

معلومات أساسية عن التمديد

الاسم GitHub Release Downloads GitHub Release Downloads
ID ncgomhdgmkicjeclohgokhciihpfdlhi
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-release-downloads/ncgomhdgmkicjeclohgokhciihpfdlhi
الوصف This extension displays the number of downloads GitHub releases have on the releases page.
حجم الملف 15.76 KB
عدد التثبيتات 504
النسخة الحالية 1.3.4
آخر تحديث 2023-01-17
تاريخ النشر 2020-05-30
تقييم 4.33/5 مجموع تقييمات 9
المطور https://addshore.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://addshore.com/2015/04/github-release-download-count-chrome-extension/
عنوان صفحة المساعدة https://github.com/addshore/chrome-github-release-downloads
اللغات المدعومة en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.3.4",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/releases",
                "*:\/\/github.com\/*\/*\/releases\/tag\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/style.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}