Lenz Image Downloader
Download images from Instagram in a quality of your choice (supports high-quality image downloading)
Lenz Image Downloader란 무엇입니까?
Lenz Image Downloader은(는) emano.waldeck에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download images from Instagram in a quality of your choice (supports high-quality image downloading)"입니다.
확장 프로그램 스크린샷
Lenz Image Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
With this tool, you can download high-quality images from Instagram pages. To use the extension, open a new page on Instagram or reload an existing page. The extension adds a new label to each image on the top left side of the images. Each label indicates the current image quality. By pressing each label, you will get the image on the default browser download's directory. Features: Supports 150, 240, 320, 480, 640, 750, and 1080 pixel qualities. Supports renaming each image to include page title. Based on Manifest V3 (do not use any resource when the extension is not used). Saves images in the well-known JPEG/JPG format. Developer Notes: Unlike general-purpose image downloaders (such as Download All Images), this extension tries to grab the image links from HTML5's image "srcset" attribute. This is the fastest method to find available image resources.
확장 프로그램 기본 정보
이름 | Lenz Image Downloader |
ID | jdkkapeblogkdcpcmdgnndkldahnaeeg |
공식 URL | https://chromewebstore.google.com/detail/lenz-image-downloader/jdkkapeblogkdcpcmdgnndkldahnaeeg |
설명 | Download images from Instagram in a quality of your choice (supports high-quality image downloading) |
파일 크기 | 127 KB |
설치 횟수 | 2,071 |
현재 버전 | 0.2.0 |
최근 업데이트 | 2021-09-01 |
출시 날짜 | 2019-11-10 |
평점 | 3.71/5 총 7 개의 평점 |
개발자 | emano.waldeck |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Emano-Waldeck/downloader-for-instagram/ |
도움말 페이지 URL | https://add0n.com/instagram-tool.html |
지원되는 언어 | de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.2.0", "name": "Lenz Image Downloader", "description": "__MSG_description__", "default_locale": "en", "permissions": [ "downloads", "storage" ], "background": { "service_worker": "worker.js" }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "homepage_url": "https:\/\/add0n.com\/instagram-tool.html", "content_scripts": [ { "matches": [ "*:\/\/www.instagram.com\/*" ], "js": [ "data\/inject.js" ], "css": [ "data\/inject.css" ], "run_at": "document_start" } ] } |