YouTube Distraction Killer

Remove distracting elements from YouTube's layout

YouTube Distraction Killerคืออะไร?

YouTube Distraction Killer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nizioleque และคุณลักษณะหลักของมันคือ "Remove distracting elements from YouTube's layout"

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

screenshot
screenshot

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

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

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

                        Do you find yourself watching cute kitten videos instead of educational content all the time?

Get rid of all the reccomendations, suggestions, comments and other tempting buttons!
Easily choose what is hidden using the options menu!

If you experience any issues, please feel free to email me with a bug report.                    

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

ชื่อ YouTube Distraction Killer YouTube Distraction Killer
ID pahjidceabkifggkmokpmlmhoaiflaeh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh
คำอธิบาย Remove distracting elements from YouTube's layout
ขนาดไฟล์ 28.3 KB
จำนวนการติดตั้ง 153
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2022-04-19
วันที่เผยแพร่ 2022-04-19
คะแนน 4.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา nizioleque
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.3",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}