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.

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

                        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 "
}