DHGate Images Downloader
Easily save images from DHGate products to your computer!
DHGate Images Downloader란 무엇입니까?
DHGate Images Downloader은(는) MXNPro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily save images from DHGate products to your computer!"입니다.
확장 프로그램 스크린샷
DHGate Images Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Save product images from DHGate in one click! ▬▬▬▬ GETTING STARTED ▬▬▬▬▬ 1. Install the extension by clicking the “Add to chrome” button. 2. Open a DHGate product page. 3. Click on the download buttons next to the product images. You can also the app window by clicking on the icon on the top right of your browser and start downloading! ▬▬▬▬▬ FEATURES ▬▬▬▬▬ FREE version: - Download main product images, variations images and pictures from description - Get the best quality image download PRO version: - Video download - Organize downloads with subdirectories - Remove images metadatas - Download all images & videos in one click - Download as .ZIP - The best image and video quality possible - Unlimited downloads - Open download directory after download - Show/Hide download buttons on product page
확장 프로그램 기본 정보
이름 | |
ID | ieejfjcaemejinfelolglicnnhimlnhp |
공식 URL | https://chrome.google.com/webstore/detail/dhgate-images-downloader/ieejfjcaemejinfelolglicnnhimlnhp |
설명 | Easily save images from DHGate products to your computer! |
파일 크기 | 537 KB |
설치 횟수 | 747 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2022-01-26 |
출시 날짜 | 2019-12-30 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | MXNPro |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://mxnpro.ovh/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DHGate Images Downloader", "short_name": "DHGate Images Downloader", "version": "1.0.3", "description": "Easily save images from DHGate products to your computer!", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "storage", "activeTab", "downloads", "https:\/\/www.dhgate.com\/product\/*", "http:\/\/www.dhgate.com\/product\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/www.dhgate.com\/product\/*", "http:\/\/www.dhgate.com\/product\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "images\/*" ] } |