YouTube Watch Thumbnails

Display a thumbnail of the video next to the channel icon on the YouTube video playback page.

O que é YouTube Watch Thumbnails?

YouTube Watch Thumbnails é uma extensão do Chrome desenvolvida por mosunset, e sua principal característica é "Display a thumbnail of the video next to the channel icon on the YouTube video playback page.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube Watch Thumbnails

Baixe arquivos de extensão YouTube Watch Thumbnails no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Click once on the extension icon and the thumbnail image hops up.

Clicking on an image opens the largest thumbnail image in a new tab.                    

Informações Básicas da Extensão

Nome YouTube Watch Thumbnails YouTube Watch Thumbnails
ID aobeafpjgdgakpagffmlkfeognaiigci
URL Oficial https://chromewebstore.google.com/detail/youtube-watch-thumbnails/aobeafpjgdgakpagffmlkfeognaiigci
Descrição Display a thumbnail of the video next to the channel icon on the YouTube video playback page.
Tamanho do Arquivo 113 KB
Contagem de Instalações 4,804
Versão Atual 3.3.1
Última Atualização 2023-09-02
Data de Publicação 2022-09-13
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor mosunset
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados id,en,fr,es,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_Name__",
    "description": "__MSG_Description__",
    "version": "3.3.1",
    "default_locale": "en",
    "icons": {
        "512": "img\/yicon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "img\/yicon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/jquery-3.6.0.min.js",
                "js\/ycontent_script.js"
            ],
            "css": [
                "css\/ycontent_script.css"
            ],
            "all_frames": true
        }
    ]
}