Trendyol Images Downloader
Save Trendyol images in one click.
什么是Trendyol Images Downloader?
Trendyol Images Downloader是由https://mxnpro.ovh开发的Chrome扩展程序,该扩展的主要功能是“Save Trendyol images in one click.”。
扩展截图
下载Trendyol Images Downloader扩展crx文件
下载Trendyol Images Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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]! 扩展基本信息
| 名称 | |
| ID | gnblbfpegnbgfflpomkmhdegcpcjkbnh |
| 官方URL | https://chromewebstore.google.com/detail/trendyol-images-downloade/gnblbfpegnbgfflpomkmhdegcpcjkbnh |
| 简介 | Save Trendyol images in one click. |
| 文件大小 | 310 KB |
| 安装次数 | 1,227 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2023-02-04 |
| 上架时间 | 2020-12-20 |
| 评分 | 1.00/5 共2次评分 |
| 开发者 | https://mxnpro.ovh |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://mxnpro.ovh/trendyol |
| 帮助页面URL | https://mxnpro.ovh/trendyol/support |
| 隐私政策页面URL | https://mxnpro.ovh/privacy |
| 支持的语言 | 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\/*"
]
} | |