Github Download Button

Adds a download button on Github files

ما هو Github Download Button؟

Github Download Button هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Adds a download button on Github files".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Github Download Button

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

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

                        When you install this extension, a download button will be added to every GitHub file. Downloading files on GitHub it's a pain and this extension makes the whole process easier                    

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

الاسم Github Download Button Github Download Button
ID jheiohemapejddjdnfnhldcfhmklgmdg
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg
الوصف Adds a download button on Github files
حجم الملف 10.63 KB
عدد التثبيتات 263
النسخة الحالية 1.0.0
آخر تحديث 2021-12-14
تاريخ النشر 2021-12-13
تقييم 3.67/5 مجموع تقييمات 3
المطور Unknown
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Download Button",
    "version": "1.0.0",
    "description": "Adds a download button on Github files",
    "icons": {
        "19": "icon_19.png",
        "48": "icon_48.png",
        "96": "icon_96.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.github.com\/*",
        "*:\/\/raw.githubusercontent.com\/*"
    ]
}