Github files download

Extension to download Githup single files without downloading the whole repo

Github files download là gì?

Github files download 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à "Extension to download Githup single files without downloading the whole repo".

Ả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 files download

Tải xuống các tệp mở rộng Github files download 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

                        Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.                    

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

Tên Github files download Github files download
ID lhfgdmnajofjhhokaobpkkgfjogknfbo
URL Chính Thức https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo
Mô tả Extension to download Githup single files without downloading the whole repo
Kích Thước Tệp 828 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-03-25
Ngày Phát Hành 2020-03-25
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*",
        "contextMenus",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}