GitHub Downloader

Download single files from GitHub

ما هو GitHub Downloader؟

GitHub Downloader هو إضافة Chrome تم تطويرها بواسطة Titus، والميزة الرئيسية لها هي "Download single files from GitHub".

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

screenshot

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

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

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

                        Chrome extension that can be used to download single files from github.com repositories.

If you find this useful and want to give me a beer. You can donate a couple of bucks via PayPal https://www.paypal.com/donate?hosted_button_id=UZHWVVR5YSZ5L                    

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

الاسم GitHub Downloader GitHub Downloader
ID jplmabjbdhggnlhndkdfciacklbjcfel
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-downloader/jplmabjbdhggnlhndkdfciacklbjcfel
الوصف Download single files from GitHub
حجم الملف 140 KB
عدد التثبيتات 12,400
النسخة الحالية 3.0
آخر تحديث 2022-09-26
تاريخ النشر 2020-06-24
تقييم 3.96/5 مجموع تقييمات 23
المطور Titus
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Downloader",
    "description": "Download single files from GitHub",
    "version": "3.0",
    "permissions": [
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/raw.githubusercontent.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "GitHub Downloader"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 3,
    "author": "Turbatu Dumitru Titus "
}