Gearbest Images Downloader
Save Gearbest images in one click.
Gearbest Images Downloader là gì?
Gearbest 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 Gearbest 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 Gearbest Images Downloader
Tải xuống các tệp mở rộng Gearbest 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 Gearbest images to your computer. Save hundred of hours downloading Gearbest product's images in one click! ▬▬▬▬▬ FEATURES ▬▬▬▬▬ FREE version: - Download main images - Download description images - Get the best image quality PRO version: - Remove image watermarks - Download all variants images in one click - 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 | Gearbest Images Downloader |
ID | jdclbkahonlboaecciolgamomaicjicn |
URL Chính Thức | https://chromewebstore.google.com/detail/gearbest-images-downloade/jdclbkahonlboaecciolgamomaicjicn |
Mô tả | Save Gearbest images in one click. |
Kích Thước Tệp | 304 KB |
Số Lần Cài Đặt | 122 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2022-12-22 |
Ngày Phát Hành | 2020-12-02 |
Đánh Giá | 5.00/5 Tổng số 1 Đá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/gearbest |
URL Trang Trợ Giúp | https://mxnpro.ovh/gearbest/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": "Gearbest DL", "version": "1.0.3", "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", "*:\/\/*.gearbest.com\/*", "*:\/\/*.gbtcdn.com\/*", "*:\/\/mxnpro.ovh\/gearbest\/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": [ "*:\/\/*.gearbest.com\/*" ], "js": [ "content.js" ] }, { "run_at": "document_idle", "matches": [ "*:\/\/mxnpro.ovh\/gearbest\/checkout", "http:\/\/localhost:3000\/*" ], "js": [ "checkoutContent.js" ] } ], "web_accessible_resources": [ "icons\/*", "images\/*" ] } |