YouTube Sub Hider

Extension that hides specified subscriptions

YouTube Sub Hiderคืออะไร?

YouTube Sub Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bggrund และคุณลักษณะหลักของมันคือ "Extension that hides specified subscriptions"

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

screenshot
screenshot

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

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

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

                        Simple extension that hides specified YouTube channels from your subscriptions page.

Maybe a channel has recently filled your feed with videos you aren't interested in. Maybe a channel started posting a video series you aren't interested in, but you want to remain subscribed for future content. This extension let's you toggle a channel's videos from appearing in your subscription feed without unsubscribing from the channel.

Features:
-"Hide" button next to the channel name on each video
-Popup menu that allows you to enter channels to hide manually, toggle whether a hidden channel is enabled, remove channels that have been hidden, and toggle the extension altogether.
-Saves channel data to your browser for persistence between sessions
-Continues hiding specified channels as you scroll through your subscription feed

Source code: https://github.com/bggrund/YouTubeSubHider                    

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

ชื่อ YouTube Sub Hider YouTube Sub Hider
ID egehbpolcfiodjjnkmlpfegegpogcefm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-sub-hider/egehbpolcfiodjjnkmlpfegegpogcefm
คำอธิบาย Extension that hides specified subscriptions
ขนาดไฟล์ 13.05 KB
จำนวนการติดตั้ง 95
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2023-06-12
วันที่เผยแพร่ 2021-07-20
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา bggrund
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/bggrund/YouTubeSubHider
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Sub Hider",
    "version": "1.2",
    "description": "Extension that hides specified subscriptions",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "*:\/\/*.youtube.com\/feed\/subscriptions"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/feed\/subscriptions"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "run_at": "document_idle"
        }
    ]
}