Github Download Button

Adds a download button on Github files

Github Download Button là gì?

Github Download Button là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Adds a download button on Github files".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github Download Button

Tải xuống các tệp mở rộng Github Download Button dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github Download Button Github Download Button
ID jheiohemapejddjdnfnhldcfhmklgmdg
URL Chính Thức https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg
Mô tả Adds a download button on Github files
Kích Thước Tệp 10.63 KB
Số Lần Cài Đặt 263
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-12-14
Ngày Phát Hành 2021-12-13
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Unknown
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}