Developer's Download Helper

Download files and folders from GitHub or GitLab via context menu.

ما هو Developer's Download Helper؟

Developer's Download Helper هو إضافة Chrome تم تطويرها بواسطة https://lezram.github.io/developers-download-helper-webext، والميزة الرئيسية لها هي "Download files and folders from GitHub or GitLab via context menu.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Developer's Download Helper

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

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

                        This is an open source developer tool to make it easier to get files from code sharing platforms.
Use the right click context menu to easily download files.
Also self-hosted/enterprise instances can be configured in the options.                    

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

الاسم Developer's Download Helper Developer's Download Helper
ID apchbjkblfhmkohghpnhidldebmpmjnn
عنوان URL الرسمي https://chromewebstore.google.com/detail/developers-download-helpe/apchbjkblfhmkohghpnhidldebmpmjnn
الوصف Download files and folders from GitHub or GitLab via context menu.
حجم الملف 156 KB
عدد التثبيتات 1,579
النسخة الحالية 0.3.0
آخر تحديث 2021-06-03
تاريخ النشر 2020-05-15
تقييم 4.60/5 مجموع تقييمات 5
المطور https://lezram.github.io/developers-download-helper-webext
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/lezram/developers-download-helper-webext
عنوان صفحة المساعدة https://github.com/lezram/developers-download-helper-webext/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Developer's Download Helper",
    "short_name": "DeDoHe",
    "version": "0.3.0",
    "description": "Download files and folders from GitHub or GitLab via context menu.",
    "homepage_url": "https:\/\/github.com\/lezram\/developers-download-helper-webext",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-48.png",
        "default_title": "Developer's Download Helper"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "downloads",
        "storage",
        "notifications",
        "https:\/\/*.github.com\/*",
        "https:\/\/*.githubusercontent.com\/*",
        "https:\/\/gitlab.com\/*"
    ],
    "optional_permissions": [
        ""
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}