Ban Youtube Channels

Ban annoying youtube channels forever, simply. Left click to choose channels and ban, right click to unban.

Ban Youtube Channelsคืออะไร?

Ban Youtube Channels เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adam และคุณลักษณะหลักของมันคือ "Ban annoying youtube channels forever, simply. Left click to choose channels and ban, right click to unban."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ban Youtube Channels

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

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

                        Sometimes you want to ban a channel from your feed entirely. That means beyond just your home page - some channels you don't want to see in search or recommendations either.

This extension protects you from these channels, erasing their videos quickly from your feed after they enter the page - that way you're not exposed to them for long. 

On youtube, left click the extension icon to choose a channel - hover over channel names and click one to ban. right click the extension icon, and you can manage the banned channel if you ever wish to do so.                    

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

ชื่อ Ban Youtube Channels Ban Youtube Channels
ID kagbfjbmciaejjmjfonncmgnaafcpigo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ban-youtube-channels/kagbfjbmciaejjmjfonncmgnaafcpigo
คำอธิบาย Ban annoying youtube channels forever, simply. Left click to choose channels and ban, right click to unban.
ขนาดไฟล์ 81.7 KB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 3.3
อัปเดตครั้งล่าสุด 2023-03-15
วันที่เผยแพร่ 2023-03-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Adam
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "bg.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "BYTC.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3,
    "name": "Ban Youtube Channels",
    "description": "Ban annoying youtube channels forever, simply. Left click to choose channels and ban, right click to unban.",
    "version": "3.3",
    "host_permissions": [
        "https:\/\/*.youtube.com\/*",
        "http:\/\/*.youtube.com\/*"
    ],
    "permissions": [
        "tabs",
        "scripting",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_icon": "icons\/action_inactive.png"
    },
    "icons": {
        "128": "icons\/active_128.png",
        "48": "icons\/active_48.png",
        "16": "icons\/active_16.png"
    }
}