image-downloader
A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
image-downloader란 무엇입니까?
image-downloader은(는) joshua.lin870903에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier."입니다.
확장 프로그램 스크린샷
image-downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This addon provides an additional context menu. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened. Other Features: Prefix feature - to add prefix to the filename while downloading. Users can customize their prefix list in the "Preference" page. Twitter credit feature - to automatically detect the username of the Twitter post and add it to the filename when downloading images. Go to "Homepage" for more detail about this addon.
확장 프로그램 기본 정보
이름 | ![]() |
ID | dfddfklkbahiihjnfmpflfblacfjojjl |
공식 URL | https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl |
설명 | A webextension to make opening/downloading original(higher quaitiy) images and images organization easier. |
파일 크기 | 20.77 KB |
설치 횟수 | 39 |
현재 버전 | 0.2.11 |
최근 업데이트 | 2019-09-10 |
출시 날짜 | 2019-09-10 |
개발자 | joshua.lin870903 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/JoshuaLin0903/image-downloader |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "image-downloader", "description": "A webextension to make opening\/downloading original(higher quaitiy) images and images organization easier.", "version": "0.2.11", "background": { "scripts": [ "background.js" ] }, "permissions": [ "contextMenus", "activeTab", "downloads", "storage", "tabs", "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content_scripts\/menu_info.js" ], "all_frames": true } ], "options_ui": { "page": "settings\/options.html" } } |