YouTube Zoomer

Easily zoom on YouTube videos, with a simple scroll

What is YouTube Zoomer?

YouTube Zoomer is a Chrome extension developed by teyzer18, and its main feature is "Easily zoom on YouTube videos, with a simple scroll".

Extension Screenshots

screenshot
screenshot
screenshot

Download YouTube Zoomer Extension CRX File

Download YouTube Zoomer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube Zoomer YouTube Zoomer
ID bgdkkdnidmmakdgebkgaeijbfkhieejn
Official URL https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn
Description Easily zoom on YouTube videos, with a simple scroll
File Size 13.8 KB
Installation Count 1,623
Current Version 1.0
Last Updated 2020-08-23
Publish Date 2020-08-23
Rating 3.05/5 Total 20 Ratings
Developer teyzer18
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}