YouTube Zoomer

Easily zoom on YouTube videos, with a simple scroll

Co to jest YouTube Zoomer?

YouTube Zoomer to rozszerzenie Chrome opracowane przez teyzer18, a jego główną funkcją jest „Easily zoom on YouTube videos, with a simple scroll”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia YouTube Zoomer

Pobierz pliki rozszerzeń YouTube Zoomer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Zoomer YouTube Zoomer
ID bgdkkdnidmmakdgebkgaeijbfkhieejn
Oficjalny URL https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn
Opis Easily zoom on YouTube videos, with a simple scroll
Rozmiar pliku 13.8 KB
Liczba instalacji 1,623
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-08-23
Data Publikacji 2020-08-23
Ocena 3.05/5 Łącznie 20 Oceny
Deweloper teyzer18
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}