YouTube Zen Mode

Get rid of all the distractions on YouTube

ما هو YouTube Zen Mode؟

YouTube Zen Mode هو إضافة Chrome تم تطويرها بواسطة Marbl، والميزة الرئيسية لها هي "Get rid of all the distractions on YouTube".

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

screenshot

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

قم بتنزيل ملفات الامتداد YouTube Zen Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Zen mode extension removes distractions from YouTube. May it be a content such as a news feed, notifications or suggestions of similar videos to the one you are currently watching on youtube.                    

معلومات أساسية عن التمديد

الاسم YouTube Zen Mode YouTube Zen Mode
ID dgdfifjibepijpnledojfgcaggckaclb
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-zen-mode/dgdfifjibepijpnledojfgcaggckaclb
الوصف Get rid of all the distractions on YouTube
حجم الملف 399 KB
عدد التثبيتات 212
النسخة الحالية 2.1.2
آخر تحديث 2023-01-10
تاريخ النشر 2020-11-14
تقييم 5.00/5 مجموع تقييمات 6
المطور Marbl
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Zen Mode",
    "version": "2.1.2",
    "description": "Get rid of all the distractions on YouTube",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "webNavigation",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Zen",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{80b1557a-ec9a-4e6e-8877-8aa4f146c413}"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube\/main.js"
            ],
            "css": [
                "youtube\/youtube.css"
            ],
            "run_at": "document_end"
        }
    ]
}