Youtube Thumbnail Downloader

A chrome extension by Jay Alto

什麼是Youtube Thumbnail Downloader?

Youtube Thumbnail Downloader是由https://www.thumbnail.guide開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension by Jay Alto”。

擴展截圖

screenshot
screenshot
screenshot

下載Youtube Thumbnail Downloader擴展crx文件

下載Youtube Thumbnail Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Ever wanted to quickly download a Youtube thumbnail to review or share?

Well, now you can in a single click.

Copying Video ID's, opening up separate websites, renaming the file, managing plugins takes too much time.

The Youtube Thumbnail Downloader lets you download a videos thumbnail in a single click, automatically naming the file with the video title and channel name.                    

擴展基本資訊

名稱 Youtube Thumbnail Downloader Youtube Thumbnail Downloader
ID neefidmpdnfbfkhfakphalpmdiddbkgh
官方網址 https://chrome.google.com/webstore/detail/youtube-thumbnail-downloa/neefidmpdnfbfkhfakphalpmdiddbkgh
簡介 A chrome extension by Jay Alto
檔案大小 222 KB
安裝次數 2,664
目前版本 0.0.4
更新時間 2022-06-25
上架時間 2022-04-14
評分 4.00/5 共 12 次評分
開發者 https://www.thumbnail.guide
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension by Jay Alto",
    "version": "0.0.4",
    "manifest_version": 3,
    "name": "Youtube Thumbnail Downloader",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_icon": "icon-34.png"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "mail.svg",
                "twitter.svg",
                "popup.html",
                "download-dark.png",
                "download-light.png",
                "downloadScript.bundle.js",
                "showUiScript.bundle.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}