Awesome ScreenShot YouTube

Take a screenshot of any YouTube video with one click.

Cos'è Awesome ScreenShot YouTube?

Awesome ScreenShot YouTube è un'estensione di Chrome sviluppata da Magic Dev, e la sua funzione principale è "Take a screenshot of any YouTube video with one click.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Awesome ScreenShot YouTube

Scarica i file di estensione Awesome 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.

Click on the "o" button to take a screenshot.                    

Informazioni di Base sull'Estensione

Nome Awesome ScreenShot YouTube Awesome ScreenShot YouTube
ID igpogmdknpofhifbnhgeniljfoebfene
URL Ufficiale https://chromewebstore.google.com/detail/awesome-screenshot-youtub/igpogmdknpofhifbnhgeniljfoebfene
Descrizione Take a screenshot of any YouTube video with one click.
Dimensione del File 18.79 KB
Conteggio Installazioni 35
Versione Corrente 1.0.3
Ultimo Aggiornamento 2022-02-05
Data di Pubblicazione 2021-11-26
Sviluppatore Magic Dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Awesome ScreenShot YouTube",
    "version": "1.0.3",
    "description": "Take a screenshot of any YouTube video with one click.",
    "icons": {
        "128": "\/images\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*"
    ],
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "webNavigation"
    ]
}