YouTube Zoomer

Easily zoom on YouTube videos, with a simple scroll

ما هو YouTube Zoomer؟

YouTube Zoomer هو إضافة Chrome تم تطويرها بواسطة teyzer18، والميزة الرئيسية لها هي "Easily zoom on YouTube videos, with a simple scroll".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة YouTube Zoomer

قم بتنزيل ملفات الامتداد YouTube Zoomer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}