GitHub Downloader

Download single files from GitHub

什麼是GitHub Downloader?

GitHub Downloader是由Titus開發的Chrome擴展程式,該擴展的主要功能是“Download single files from GitHub”。

擴展截圖

screenshot

下載GitHub Downloader擴展crx文件

下載GitHub Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Chrome extension that can be used to download single files from github.com repositories.

If you find this useful and want to give me a beer. You can donate a couple of bucks via PayPal https://www.paypal.com/donate?hosted_button_id=UZHWVVR5YSZ5L                    

擴展基本資訊

名稱 GitHub Downloader GitHub Downloader
ID jplmabjbdhggnlhndkdfciacklbjcfel
官方網址 https://chromewebstore.google.com/detail/github-downloader/jplmabjbdhggnlhndkdfciacklbjcfel
簡介 Download single files from GitHub
檔案大小 140 KB
安裝次數 12,400
目前版本 3.0
更新時間 2022-09-26
上架時間 2020-06-24
評分 3.96/5 共 23 次評分
開發者 Titus
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Downloader",
    "description": "Download single files from GitHub",
    "version": "3.0",
    "permissions": [
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/raw.githubusercontent.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "GitHub Downloader"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 3,
    "author": "Turbatu Dumitru Titus "
}