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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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"
        }
    }
}