Screenshot YouTube

Take a screenshot of any YouTube video with one click.

Co je Screenshot YouTube?

Screenshot YouTube je rozšíření Chrome vyvinuté Zdeněk Gromnica | FutureMillennium, a jeho hlavní funkcí je „Take a screenshot of any YouTube video with one click.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Screenshot YouTube

Stáhněte si soubory rozšíření Screenshot YouTube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Screenshot YouTube Screenshot YouTube
ID gjoijpfmdhbjkkgnmahganhoinjjpohk
Oficiální URL https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk
Popis Take a screenshot of any YouTube video with one click.
Velikost souboru 16.15 KB
Počet instalací 446,521
Aktuální Verze 2.4.1
Poslední Aktualizace 2021-12-20
Datum Vydání 2020-02-04
Hodnocení 4.45/5 Celkem 366 Hodnocení
Vývojář Zdeněk Gromnica | FutureMillennium
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.patreon.com/FutureMillennium
Podporované Jazyky 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"
    ]
}