Trendyol Images Downloader
Save Trendyol images in one click.
Trendyol Images Downloader là gì?
Trendyol Images Downloader là một tiện ích mở rộng Chrome được phát triển bởi https://mxnpro.ovh, và tính năng chính của nó là "Save Trendyol images in one click.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Trendyol Images Downloader
Tải xuống các tệp mở rộng Trendyol Images Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Easily save Trendyol images to your computer. Save hundred of hours downloading Trendyol product's images in one click! ▬▬▬▬▬ FEATURES ▬▬▬▬▬ FREE version: - Download main images - Download description images - Get the best image quality PRO version: - Best quality image possible - Organise downloads with subdirectories - Open download directory after download - Download as .ZIP file ▬▬▬▬▬ CONTACT ▬▬▬▬▬ If you have any questions, or suggestions to improve the app, please let us know at [email protected]!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Trendyol Images Downloader |
ID | gnblbfpegnbgfflpomkmhdegcpcjkbnh |
URL Chính Thức | https://chromewebstore.google.com/detail/trendyol-images-downloade/gnblbfpegnbgfflpomkmhdegcpcjkbnh |
Mô tả | Save Trendyol images in one click. |
Kích Thước Tệp | 310 KB |
Số Lần Cài Đặt | 1,227 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2023-02-04 |
Ngày Phát Hành | 2020-12-20 |
Đánh Giá | 1.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://mxnpro.ovh |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://mxnpro.ovh/trendyol |
URL Trang Trợ Giúp | https://mxnpro.ovh/trendyol/support |
URL Trang Chính Sách Bảo Mật | https://mxnpro.ovh/privacy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "short_name": "Trendyol DL", "version": "1.0.2", "description": "__MSG_appDesc__", "default_locale": "en", "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'; object-src 'self'", "permissions": [ "storage", "downloads", "activeTab", "*:\/\/*.trendyol.com\/*", "*:\/\/*.gbtcdn.com\/*", "*:\/\/mxnpro.ovh\/trendyol\/checkout", "http:\/\/localhost:3000\/*" ], "options_ui": { "page": "index.html?route=options", "open_in_tab": true }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "index.html?route=popup" }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*.trendyol.com\/*" ], "js": [ "content.js" ] }, { "run_at": "document_idle", "matches": [ "*:\/\/mxnpro.ovh\/trendyol\/checkout", "http:\/\/localhost:3000\/*" ], "js": [ "checkoutContent.js" ] } ], "web_accessible_resources": [ "icons\/*", "images\/*" ] } |