YT Thumbnail Downloader

Download thumbnail images of youtube videos

YT Thumbnail Downloader란 무엇입니까?

YT Thumbnail Downloader은(는) Rovalty에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download thumbnail images of youtube videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YT Thumbnail Downloader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        YT Thumbnail Downloader is simple tool which will help you to download thumbnail images of any youtube video.
Download free youtube videos thumbnail image in Full HD(1080), HD (720), SD, and also in small size. 
it's currently supported formats: YouTube (HD, HQ, 1080p, 4K)

you can easily download your video-thumbnails. 
Just open any youtube video > click on Download Thumbnail button from extension > Done! Your thumbnails will be ready for saving.

Privacy policy: https://www.saxsos.xyz/p/policy-privacy-policy.html                    

확장 프로그램 기본 정보

이름 YT Thumbnail Downloader YT Thumbnail Downloader
ID akfikgmhbajiaekdbgchbmhkceclncda
공식 URL https://chromewebstore.google.com/detail/yt-thumbnail-downloader/akfikgmhbajiaekdbgchbmhkceclncda
설명 Download thumbnail images of youtube videos
파일 크기 58.71 KB
설치 횟수 2,404
현재 버전 3.5.4
최근 업데이트 2020-05-09
출시 날짜 2020-05-09
평점 3.97/5 총 30 개의 평점
개발자 Rovalty
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.saxsos.xyz/
도움말 페이지 URL https://www.saxsos.xyz/p/contact-us.html
개인정보 보호 정책 페이지 URL https://www.saxsos.xyz/p/policy-privacy-policy.html
지원되는 언어 en-US
manifest.json
{
    "name": "YT Thumbnail Downloader",
    "description": "Download thumbnail images of youtube videos",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.5.4",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "YT Thumbnail Downloader",
        "default_popup": "popup.html",
        "default_icon": {
            "128": "img\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "download.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "web_accessible_resources": [
        "*.png",
        "*.PNG",
        "*.JPG"
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "manifest_version": 2
}