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
Eメール [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"
            ]
        }
    ]
}