Download Manager
A less intrusive way to access your recent downloads
Download Manager란 무엇입니까?
Download Manager은(는) https://james-coyle.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A less intrusive way to access your recent downloads"입니다.
확장 프로그램 스크린샷
Download Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Replaces the chrome downloads bar with a toolbar icon. The popup is styled to look like the new extensions menu for a more native feel. FEATURES - Access your download list at any time from the chrome toolbar - Option to display in the browser sidebar - Quickly search recent downloads - Badge count to show download status at a glance - Pause and resume downloads easily - Clear downloads from your history - Delete downloaded files from the popup - Open file in default application - Open file in browser - Open folder which contains the file - Quick link to chrome downloads page - Notification when your download completes INSTRUCTIONS Hold Ctrl to change the secondary download actions. Alt-J opens the popup.
확장 프로그램 기본 정보
이름 | Download Manager |
ID | epgkpmpjileiepinlphboolabkkdelle |
공식 URL | https://chromewebstore.google.com/detail/download-manager/epgkpmpjileiepinlphboolabkkdelle |
설명 | A less intrusive way to access your recent downloads |
파일 크기 | 38.36 KB |
설치 횟수 | 29,091 |
현재 버전 | 4.1.1 |
최근 업데이트 | 2023-11-15 |
출시 날짜 | 2017-09-12 |
평점 | 4.06/5 총 79 개의 평점 |
개발자 | https://james-coyle.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/JamesCoyle/downloads-extention |
도움말 페이지 URL | https://github.com/JamesCoyle/downloads-extention/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Download Manager", "version": "4.1.1", "short_name": "Downloads", "author": "James Coyle", "description": "A less intrusive way to access your recent downloads", "icons": { "512": "icon.png" }, "permissions": [ "downloads", "downloads.open", "downloads.shelf", "storage", "sidePanel" ], "optional_permissions": [ "notifications" ], "action": { "default_popup": "popup.html", "default_title": "Downloads" }, "options_page": "options.html", "commands": { "_execute_action": { "suggested_key": { "windows": "Alt+J", "mac": "Alt+J", "chromeos": "Alt+J", "linux": "Alt+J" } } }, "background": { "type": "module", "service_worker": "background.js" }, "side_panel": { "default_path": "sidePanel.html" } } |