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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
            ]
        }
    ]
}