Download Box
Replace Chrome's downloads shelf with a popup menu to manage your downloads.
什么是Download Box?
Download Box是由Matthew Brown开发的Chrome扩展程序,该扩展的主要功能是“Replace Chrome's downloads shelf with a popup menu to manage your downloads.”。
扩展截图
下载Download Box扩展crx文件
下载Download Box扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Get rid of Chrome's downloads shelf at the bottom of your screen and replace it with a nice popup in the top bar. Features include: - Pagination - Show-in-folder button - Copy the URL a file came from - Retry failed downloads - File-size and estimated time remaining - Pause in-progress downloads (right click) - Dark theme and Light theme, following system preference - Open source A full changelog for any updates can be found here: https://github.com/matthew-e-brown/download-box/releases
扩展基本信息
名称 | Download Box |
ID | khnpnladjopoijohibadononlfbmfhpo |
官方URL | https://chromewebstore.google.com/detail/download-box/khnpnladjopoijohibadononlfbmfhpo |
简介 | Replace Chrome's downloads shelf with a popup menu to manage your downloads. |
文件大小 | 110 KB |
安装次数 | 1,062 |
当前版本 | 1.3.0 |
更新时间 | 2022-08-24 |
上架时间 | 2022-02-02 |
评分 | 4.60/5 共5次评分 |
开发者 | Matthew Brown |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/matthew-e-brown/download-box |
帮助页面URL | https://github.com/matthew-e-brown/download-box/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Download Box", "description": "Replace Chrome's downloads shelf with a popup menu to manage your downloads.", "version": "1.3.0", "manifest_version": 3, "minimum_chrome_version": "88", "icons": { "16": "icons\/16x16.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png", "256": "icons\/256x256.png" }, "action": { "default_popup": "popup.html", "default_title": "Downloads", "default_icon": { "16": "icons\/16x16.png", "24": "icons\/24x24.png", "32": "icons\/32x32.png" } }, "background": { "service_worker": "background.js" }, "permissions": [ "downloads", "downloads.open", "downloads.shelf" ] } |