Screenshot YouTube

Take a screenshot of any YouTube video with one click.

Qu'est-ce que Screenshot YouTube ?

Screenshot YouTube est une extension Chrome développée par Zdeněk Gromnica | FutureMillennium, et sa fonction principale est "Take a screenshot of any YouTube video with one click.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Screenshot YouTube

Téléchargez les fichiers d'extension Screenshot YouTube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Screenshot YouTube Screenshot YouTube
ID gjoijpfmdhbjkkgnmahganhoinjjpohk
URL Officiel https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk
Description Take a screenshot of any YouTube video with one click.
Taille du Fichier 16.15 KB
Nombre d'Installations 446,521
Version Actuelle 2.4.1
Dernière Mise à Jour 2021-12-20
Date de Publication 2020-02-04
Évaluation 4.45/5 Total 366 Évaluations
Développeur Zdeněk Gromnica | FutureMillennium
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.patreon.com/FutureMillennium
Langues Prises en Charge 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"
    ]
}