YouTube Zoomer

Easily zoom on YouTube videos, with a simple scroll

Cos'è YouTube Zoomer?

YouTube Zoomer è un'estensione di Chrome sviluppata da teyzer18, e la sua funzione principale è "Easily zoom on YouTube videos, with a simple scroll".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YouTube Zoomer

Scarica i file di estensione YouTube Zoomer 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

                        With this extension, you can easily zoom on YouTube videos. It can be useful to seek for something particular in a video, something you have some difficulties to see, or to resize the format of the theater mode.                    

Informazioni di Base sull'Estensione

Nome YouTube Zoomer YouTube Zoomer
ID bgdkkdnidmmakdgebkgaeijbfkhieejn
URL Ufficiale https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn
Descrizione Easily zoom on YouTube videos, with a simple scroll
Dimensione del File 13.8 KB
Conteggio Installazioni 1,623
Versione Corrente 1.0
Ultimo Aggiornamento 2020-08-23
Data di Pubblicazione 2020-08-23
Valutazione 3.05/5 Totale 20 Valutazioni
Sviluppatore teyzer18
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0",
    "name": "YouTube Zoomer",
    "description": "Easily zoom on YouTube videos, with a simple scroll",
    "background": {
        "persistent": false,
        "scripts": [
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content\/injection.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/*.youtube.com\/*",
        "background"
    ]
}