Github files download

Extension to download Githup single files without downloading the whole repo

ما هو Github files download؟

Github files download هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Extension to download Githup single files without downloading the whole repo".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Github files download

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

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

                        Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.                    

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

الاسم Github files download Github files download
ID lhfgdmnajofjhhokaobpkkgfjogknfbo
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo
الوصف Extension to download Githup single files without downloading the whole repo
حجم الملف 828 KB
عدد التثبيتات 47
النسخة الحالية 0.0.1
آخر تحديث 2020-03-25
تاريخ النشر 2020-03-25
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*",
        "contextMenus",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}