Github Download Button

Adds a download button on Github files

什么是Github Download Button?

Github Download Button是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Adds a download button on Github files”。

扩展截图

screenshot
screenshot

下载Github Download Button扩展crx文件

下载Github Download Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        When you install this extension, a download button will be added to every GitHub file. Downloading files on GitHub it's a pain and this extension makes the whole process easier                    

扩展基本信息

名称 Github Download Button Github Download Button
ID jheiohemapejddjdnfnhldcfhmklgmdg
官方URL https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg
简介 Adds a download button on Github files
文件大小 10.63 KB
安装次数 263
当前版本 1.0.0
更新时间 2021-12-14
上架时间 2021-12-13
评分 3.67/5 共3次评分
开发者 Unknown
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Download Button",
    "version": "1.0.0",
    "description": "Adds a download button on Github files",
    "icons": {
        "19": "icon_19.png",
        "48": "icon_48.png",
        "96": "icon_96.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.github.com\/*",
        "*:\/\/raw.githubusercontent.com\/*"
    ]
}