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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |