Github files download

Extension to download Githup single files without downloading the whole repo

什么是Github files download?

Github files download是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Extension to download Githup single files without downloading the whole repo”。

扩展截图

screenshot
screenshot

下载Github files download扩展crx文件

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

扩展使用说明

                        Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.                    

扩展基本信息

名称 Github files download Github files download
ID lhfgdmnajofjhhokaobpkkgfjogknfbo
官方URL https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo
简介 Extension to download Githup single files without downloading the whole repo
文件大小 828 KB
安装次数 47
当前版本 0.0.1
更新时间 2020-03-25
上架时间 2020-03-25
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*",
        "contextMenus",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}