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