YouTube Zoomer

Easily zoom on YouTube videos, with a simple scroll

YouTube Zoomer क्या है?

YouTube Zoomer teyzer18 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily zoom on YouTube videos, with a simple scroll"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Zoomer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Zoomer YouTube Zoomer
ID bgdkkdnidmmakdgebkgaeijbfkhieejn
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn
विवरण Easily zoom on YouTube videos, with a simple scroll
फ़ाइल का आकार 13.8 KB
स्थापना संख्या 1,623
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-08-23
प्रकाशन तिथि 2020-08-23
रेटिंग 3.05/5 कुल 20 रेटिंग्स
डेवलपर teyzer18
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}