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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Trendyol Images Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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]!                    

확장 프로그램 기본 정보

이름 Trendyol Images Downloader Trendyol Images Downloader
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\/*"
    ]
}