GitHub Downloader

Download single files from GitHub

GitHub Downloaderคืออะไร?

GitHub Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Titus และคุณลักษณะหลักของมันคือ "Download single files from GitHub"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Downloader

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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 "
}