Screenshot YouTube

Take a screenshot of any YouTube video with one click.

Cos'è Screenshot YouTube?

Screenshot YouTube è un'estensione di Chrome sviluppata da Zdeněk Gromnica | FutureMillennium, e la sua funzione principale è "Take a screenshot of any YouTube video with one click.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Screenshot YouTube

Scarica i file di estensione Screenshot YouTube in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Screenshot YouTube Screenshot YouTube
ID gjoijpfmdhbjkkgnmahganhoinjjpohk
URL Ufficiale https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk
Descrizione Take a screenshot of any YouTube video with one click.
Dimensione del File 16.15 KB
Conteggio Installazioni 446,521
Versione Corrente 2.4.1
Ultimo Aggiornamento 2021-12-20
Data di Pubblicazione 2020-02-04
Valutazione 4.45/5 Totale 366 Valutazioni
Sviluppatore Zdeněk Gromnica | FutureMillennium
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.patreon.com/FutureMillennium
Lingue Supportate 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"
    ]
}