Youtube Channel Filter

Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!

Youtube Channel Filterคืออะไร?

Youtube Channel Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย IdentityofSine และคุณลักษณะหลักของมันคือ "Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!"

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

screenshot
screenshot
screenshot

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

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

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

                        # Youtube Channel Filter
## A unique way of productivity. 

### What is Youtube Channel Filter
    Youtube Channel Filter is a chrome extension designed to make youtube a *more productive* platform. 
This is done by letting the user select channels they think would be productive to their lives.

### What does the filter do?
    The filter blocks out all recommendations from channels that are not approved(this can be reversed as well to hide channels you do not like) from the home page and video recommendations. However searching manually does not filter any videos.
### How Do I use it?
    To add a channel to the filter, navigate to the channel's page and you'll see a gray button that says ***Add Channel***. *(if you do not see this, refresh the page)*
    To remove a channel you can do two things. Either navigate to the chrome extension at the top right of your browser, click on it, and click on the channel you want to remove. Or you can navigate back to the channel's page and click the gray button that says ***Remove Channel*** *(Again if you do not see this, refresh the page)*                    

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

ชื่อ Youtube Channel Filter Youtube Channel Filter
ID fgoljeficnldfieaifdoplonkjbmfple
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-channel-filter/fgoljeficnldfieaifdoplonkjbmfple
คำอธิบาย Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!
ขนาดไฟล์ 9.98 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2022-09-19
วันที่เผยแพร่ 2022-09-19
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา IdentityofSine
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Channel Filter",
    "description": "Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!",
    "version": "3.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/",
        "https:\/\/*.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "ytcss.css"
            ],
            "js": [
                "ytscript.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}