Download Statusbar
Easily manage your downloads in status-bar.
Download Statusbar란 무엇입니까?
Download Statusbar은(는) Karl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily manage your downloads in status-bar."입니다.
확장 프로그램 스크린샷
Download Statusbar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Download Statusbar is a browser extension that let you easily manage your downloads from statusbar. Simply click on the toolbar button to show the statusbar. Please note that, you need to have at least one active download for the statusbar to become visible. Within the statusbar, downloads are listed horizontally. Each download has a context-menu with several options. In order to close the statusbar please click on the red close button within the statusbar. Please note that, toolbar button only shows the statusbar. Context-menu has several items including pause, cancel, clear and etc. Moreover there are few settings in the options page which you can adjust. For example, statusbar background color, font size, etc. Note: Download Statusbar addon is still in beta and may have some bugs. If you see any bugs, or you have a feature request, please email me ( karl [dot] svothye [at] gmail [dot] com ) with the bug details. I will try to fix the issues as soon as possible.
확장 프로그램 기본 정보
이름 | Download Statusbar |
ID | kfjkodkjnmdeookccjmcdbhhpbgkoche |
공식 URL | https://chromewebstore.google.com/detail/download-statusbar/kfjkodkjnmdeookccjmcdbhhpbgkoche |
설명 | Easily manage your downloads in status-bar. |
파일 크기 | 86.88 KB |
설치 횟수 | 4,387 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2020-05-29 |
출시 날짜 | 2020-05-28 |
평점 | 3.53/5 총 34 개의 평점 |
개발자 | Karl |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://eccorem.com/apps/download-statusbar.html |
도움말 페이지 URL | http://eccorem.com/apps/download-statusbar.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.2", "manifest_version": 2, "default_locale": "en", "short_name": "download-statusbar", "name": "__MSG_chrome_extension_name__", "description": "__MSG_chrome_extension_description__", "homepage_url": "https:\/\/eccorem.com\/apps\/download-statusbar.html", "options_ui": { "page": "data\/option\/option.html", "chrome_style": true }, "background": { "scripts": [ "background.js", "messageHandler.js" ], "persistent": false }, "permissions": [ "*:\/\/*\/*", "downloads", "downloads.open", "storage", "notifications" ], "web_accessible_resources": [ "data\/popup\/popup.html", "data\/contextMenu\/contextMenu.html", "data\/tooltip\/tooltip.html" ], "browser_action": { "default_title": "__MSG_chrome_extension_name__", "default_icon": { "16": "data\/icons\/16.png", "24": "data\/icons\/24.png", "32": "data\/icons\/32.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "24": "data\/icons\/24.png", "32": "data\/icons\/32.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |