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