Youtube Study Mode

No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.

ما هو Youtube Study Mode؟

Youtube Study Mode هو إضافة Chrome تم تطويرها بواسطة zkjiang12، والميزة الرئيسية لها هي "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Youtube Study Mode

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

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

                        Finish your work faster by being less distracted on Youtube.

Instead of the Youtube home page being filled with distracting videos, it's only a search bar. When watching a video the recommendations are also hidden. 

This way you won't accidentally get distracted and spend hours watching videos. Instead, this will help you quickly finish work so you can enjoy free time.                    

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

الاسم Youtube Study Mode Youtube Study Mode
ID phkgjapblkjghdpbnbkjphgjploajonl
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-study-mode/phkgjapblkjghdpbnbkjphgjploajonl
الوصف No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.
حجم الملف 172 KB
عدد التثبيتات 121
النسخة الحالية 3.1.1
آخر تحديث 2023-08-29
تاريخ النشر 2023-07-05
تقييم 5.00/5 مجموع تقييمات 7
المطور zkjiang12
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Study Mode",
    "version": "3.1.1",
    "manifest_version": 3,
    "description": "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.",
    "icons": {
        "16": "\/icon.png",
        "32": "\/icon.png",
        "48": "\/icon.png",
        "128": "\/icon.png"
    },
    "action": {
        "default_icon": {
            "16": "\/icon.png",
            "32": "\/icon.png",
            "48": "\/icon.png",
            "128": "\/icon.png"
        }
    },
    "background": {
        "service_worker": "\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "\/yt.js"
            ],
            "css": [
                "\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "logo.png",
                "stars.png"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ]
}