One Click Image Downloader
Adds download buttons to images on a web page.
One Click Image Downloader란 무엇입니까?
One Click Image Downloader은(는) Licua에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds download buttons to images on a web page."입니다.
확장 프로그램 스크린샷
One Click Image Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds download buttons to images on a web page. If there is a link to the original size image, the original size will be downloaded. ■Basic function - A download button will be displayed in the upper right of the each image. - You can download the image by clicking the button. ■Additional functions You can use the following functions from the extension icon in the upper right of the browser. - Downloads all displayed images at once. - Automatically scroll the screen and downloads images. ■Note You may not be able to download images on websites that are not made to be standard. ■Disclaimer Regarding all obstacles, damages, defects, etc. caused by using this extension, the provider of this extension, the related parties of the provider and any organizations or organizations to which this extension belongs do not assume any responsibility. Please use at your own risk.
확장 프로그램 기본 정보
이름 | One Click Image Downloader |
ID | djcobamaplcmhmaocomnkfdbcoiggepo |
공식 URL | https://chromewebstore.google.com/detail/one-click-image-downloade/djcobamaplcmhmaocomnkfdbcoiggepo |
설명 | Adds download buttons to images on a web page. |
파일 크기 | 229 KB |
설치 횟수 | 25,040 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2021-10-11 |
출시 날짜 | 2020-07-04 |
평점 | 3.80/5 총 90 개의 평점 |
개발자 | Licua |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "1.3.0", "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png" }, "browser_action": { "default_icon": "icon_32.png", "default_title": "One Click Image Downloader", "default_popup": "index.html" }, "background": { "scripts": [ "\/static\/js\/background_script.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "\/static\/js\/content_script.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "downloads" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |