Github files download
Extension to download Githup single files without downloading the whole repo
Github files downloadคืออะไร?
Github files download เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Extension to download Githup single files without downloading the whole repo"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github files download
ดาวน์โหลดไฟล์ส่วนขยาย Github files download ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github files download |
ID | lhfgdmnajofjhhokaobpkkgfjogknfbo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo |
คำอธิบาย | Extension to download Githup single files without downloading the whole repo |
ขนาดไฟล์ | 828 KB |
จำนวนการติดตั้ง | 47 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2020-03-25 |
วันที่เผยแพร่ | 2020-03-25 |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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'" } |