Github/Gitlab/Bitbucket File Downloader

Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo

什么是Github/Gitlab/Bitbucket File Downloader?

Github/Gitlab/Bitbucket File Downloader是由antoinebou13开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo”。

扩展截图

screenshot
screenshot
screenshot

下载Github/Gitlab/Bitbucket File Downloader扩展crx文件

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

扩展使用说明

                        This extension add a individual download button and the size of the file to each file to a github or gitlab or bitbucket repo. 

For the directory they link you to the other file inside the directory.

For more info: https://github.com/antoinebou13/GithubSimpleFileDownloader                    

扩展基本信息

名称 Github/Gitlab/Bitbucket File Downloader Github/Gitlab/Bitbucket File Downloader
ID beaapccjfanmdliofdcpbjmaklgojgbb
官方URL https://chrome.google.com/webstore/detail/githubgitlabbitbucket-fil/beaapccjfanmdliofdcpbjmaklgojgbb
简介 Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo
文件大小 912 KB
安装次数 84
当前版本 1.1.1
更新时间 2019-04-27
上架时间 2019-04-27
评分 5.00/5 共4次评分
开发者 antoinebou13
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/antoinebou13/GithubSimpleFileDownloader
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Antoine Boucher ",
    "name": "Github\/Gitlab\/Bitbucket File Downloader",
    "short_name": "Git File Downloader",
    "version": "1.1.1",
    "default_locale": "en",
    "description": "Chrome extension for Github\/Gitlab\/Bitbucket to download single file (with size indicator) in a repo",
    "icons": {
        "16": "src\/assets\/icons\/github_icon16.png",
        "32": "src\/assets\/icons\/github_icon32.png",
        "96": "src\/assets\/icons\/github_icon96.png",
        "120": "src\/assets\/icons\/github_icon120.png",
        "128": "src\/assets\/icons\/github_icon128.png",
        "144": "src\/assets\/icons\/github_icon144.png"
    },
    "permissions": [
        "contentSettings"
    ],
    "web_accessible_resources": [
        "src\/assets\/icons\/*.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitlab.com\/*",
                "https:\/\/bitbucket.org\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject\/inject_github.js"
            ]
        },
        {
            "matches": [
                "https:\/\/gitlab.com\/*"
            ],
            "js": [
                "src\/inject\/inject_gitlab.js"
            ]
        },
        {
            "matches": [
                "https:\/\/bitbucket.org\/*"
            ],
            "js": [
                "src\/inject\/inject_bitbucket.js"
            ]
        }
    ]
}