Distraction Free YouTube

YouTube with less distraction!

Distraction Free YouTubeคืออะไร?

Distraction Free YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย developer.4af2c และคุณลักษณะหลักของมันคือ "YouTube with less distraction!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Distraction Free YouTube

ดาวน์โหลดไฟล์ส่วนขยาย Distraction Free YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension blocks the home page, explore page, side bar, end screen video tile, and YouTube Shorts.

the project is open source: https://github.com/dwssv/distraction-free-youtube                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Distraction Free YouTube Distraction Free YouTube
ID cjfomfbgjppmmipmjdfpcjlilpjbahli
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/distraction-free-youtube/cjfomfbgjppmmipmjdfpcjlilpjbahli
คำอธิบาย YouTube with less distraction!
ขนาดไฟล์ 484 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2022-05-14
วันที่เผยแพร่ 2022-03-27
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา developer.4af2c
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Free YouTube",
    "description": "YouTube with less distraction!",
    "version": "1.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}