GitHub Downloader

Download single files from GitHub

什么是GitHub Downloader?

GitHub Downloader是由Titus开发的Chrome扩展程序,该扩展的主要功能是“Download single files from GitHub”。

扩展截图

screenshot

下载GitHub Downloader扩展crx文件

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