Chrome Download Helper
This extension helps you managing your donwloads.
Chrome Download Helperคืออะไร?
Chrome Download Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Obstc0rp และคุณลักษณะหลักของมันคือ "This extension helps you managing your donwloads."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Download Helper
ดาวน์โหลดไฟล์ส่วนขยาย Chrome Download Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension helps you managing your donwloads. If enabled any download gets it own subdirectory inside the download directory. This subdirectory gets the name of the domain where the download comes from. If enabled you can use a whitelist. Then only those downloads get a subdirectory which domain is listed. Additionally you can use defined shortkeys to open the last download (default Alt+L) and open the default download directory (default Alt+O). You can change this settings in the Chrome extension menu at the very bottom.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Chrome Download Helper |
ID | knaddinhblejecfcgajdpbebicfpejem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem |
คำอธิบาย | This extension helps you managing your donwloads. |
ขนาดไฟล์ | 686 KB |
จำนวนการติดตั้ง | 20,000 |
เวอร์ชันปัจจุบัน | 1.2.2 |
อัปเดตครั้งล่าสุด | 2015-04-09 |
วันที่เผยแพร่ | 2015-04-09 |
คะแนน | 2.83/5 รวมทั้งหมด 24 คะแนน |
ผู้พัฒนา | Obstc0rp |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Obstc0rp/Chrome-Download-Helper |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Download Helper", "description": "This extension helps you managing your donwloads.", "version": "1.2.2", "permissions": [ "downloads", "downloads.open" ], "icons": { "128": ".\/assets\/images\/icon.png" }, "background": { "scripts": [ "assets\/js\/background.js" ] }, "browser_action": { "default_icon": ".\/assets\/images\/icon.png", "default_popup": ".\/html\/popup.html" }, "options_page": ".\/html\/options.html", "commands": { "open-download-dir": { "suggested_key": { "default": "Alt+O" }, "description": "Open Download Directory" }, "open-last-downlaod": { "suggested_key": { "default": "Alt+L" }, "description": "Open Last Download" } } } |