Image Download
This extension allows you to download images with one click, directly to your download folder.
Image Download란 무엇입니까?
Image Download은(는) https://www.xn--fundstcke-im-netz-72b.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to download images with one click, directly to your download folder."입니다.
확장 프로그램 스크린샷
Image Download 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds a small icon to every picture while hovering over it. When you click on that icon the picture is downloaded directly to your download folder. You will never be asked again where you want to save the picture. If you want to get in touch, please join the Google+ Community Image Download. (https://plus.google.com/u/0/communities/109075059138445967727) Attention: The extension is in an early development state, there are some features to come and not everything is working perfect. If you have any tips or questions don't hesitate to contact us.
확장 프로그램 기본 정보
이름 | Image Download |
ID | pianibmfifkeamgfggpkkanjdcoppgch |
공식 URL | https://chromewebstore.google.com/detail/image-download/pianibmfifkeamgfggpkkanjdcoppgch |
설명 | This extension allows you to download images with one click, directly to your download folder. |
파일 크기 | 86.52 KB |
설치 횟수 | 3,435 |
현재 버전 | 1.4.0 |
최근 업데이트 | 2016-02-08 |
출시 날짜 | 2016-02-08 |
평점 | 3.15/5 총 68 개의 평점 |
개발자 | https://www.xn--fundstcke-im-netz-72b.de |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Image Download", "description": "This extension allows you to download images with one click, directly to your download folder.", "version": "1.4.0", "icons": { "128": "image_download_128.png" }, "author": "Kevin B.", "permissions": [ "storage", "downloads" ], "browser_action": { "default_icon": "action-on.png" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "jquery.js", "content.js", "mutation-summary.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "save_64.png", "page.css" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |