YouTube Blocker

Block unwanted YouTube channels.

YouTube Blockerคืออะไร?

YouTube Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Przemysław Tyczyński และคุณลักษณะหลักของมันคือ "Block unwanted YouTube channels."

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

screenshot
screenshot
screenshot

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

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

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

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

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

ชื่อ YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
คำอธิบาย Block unwanted YouTube channels.
ขนาดไฟล์ 96.3 KB
จำนวนการติดตั้ง 1,036
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-04-21
วันที่เผยแพร่ 2020-04-21
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Przemysław Tyczyński
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://youtube-blocker.tyczynski.dev
URL หน้าช่วยเหลือ https://youtube-blocker.tyczynski.dev
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}