Screenshot YouTube

Take a screenshot of any YouTube video with one click.

O que é Screenshot YouTube?

Screenshot YouTube é uma extensão do Chrome desenvolvida por Zdeněk Gromnica | FutureMillennium, e sua principal característica é "Take a screenshot of any YouTube video with one click.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Screenshot YouTube

Baixe arquivos de extensão Screenshot YouTube 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

                        Adds a “Screenshot” button to the YouTube video player which saves a screenshot of the currently playing video as a file, or copies it to the clipboard, or both.

Optionally with keyboard shortcuts, and buttons for changing the playback rate.

This extension does not contain any malicious or tracking code. No viruses. No ads. Only good software.

Thanks to Ari Velazquez, and Zertsu for their contributions.

Consider supporting on Patreon: https://www.patreon.com/FutureMillennium

Open source at https://github.com/FutureMillennium/Screenshot-YouTube                    

Informações Básicas da Extensão

Nome Screenshot YouTube Screenshot YouTube
ID gjoijpfmdhbjkkgnmahganhoinjjpohk
URL Oficial https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk
Descrição Take a screenshot of any YouTube video with one click.
Tamanho do Arquivo 16.15 KB
Contagem de Instalações 446,521
Versão Atual 2.4.1
Última Atualização 2021-12-20
Data de Publicação 2020-02-04
Classificação 4.45/5 Total de 366 Avaliações
Desenvolvedor Zdeněk Gromnica | FutureMillennium
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.patreon.com/FutureMillennium
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Screenshot YouTube",
    "version": "2.4.1",
    "description": "Take a screenshot of any YouTube video with one click.",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "page.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "webNavigation",
        "storage"
    ]
}