Chrome Download Helper
This extension helps you managing your donwloads.
什麼是Chrome Download Helper?
Chrome Download Helper是由Obstc0rp開發的Chrome擴展程式,該擴展的主要功能是“This extension helps you managing your donwloads.”。
擴展截圖
下載Chrome Download Helper擴展crx文件
下載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 |
官方網址 | 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" } } } |