Youtube Recommendation Modifier

Extension that allows user to filter their YouTube Homepage Recommendation.

Youtube Recommendation Modifierคืออะไร?

Youtube Recommendation Modifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย havefocus และคุณลักษณะหลักของมันคือ "Extension that allows user to filter their YouTube Homepage Recommendation."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        A chrome extension that gives power💪 to the user to modify their YouTube homepage Recommendation in order to increase their productivity 😎. It is free of charge. We created because we badly needed it for our own use, and wanted to share it with the world 😊.

Most of the time we visit YouTube, we end up wasting a lot of time because of some addictive recommendations on the homepage. YouTube's algorithm is designed to make you addicted to short-time pleasure videos so as to increase your retention time on their platform 😨, but this extension will allow you to choose what categories you want to see 😋. The aim of this extension is to get rid of such recommendations and let the user decide their feed.

It is very simple to use just select the categories which you want to have in your feed and click on submit. This extension unlike other extensions doesn't remove the whole feed but only removes the categories of videos which the user don't want in their feed.

As of now the extension only works on the YouTube Homepage. We are continuously working to make it more user-friendly.


HOW TO USE THE YOUTUBE RECOMMENDATION MODIFIER  EXTENSION 
1. Install the extension for Chrome Browser.  
2. Add the extension to the chrome toolbar for faster access.  
2. Go to www.youtube.com
3. Open extension from toolbar and select the categories of which videos you want to have in your feed
4. Click on Submit.
All the video related to unselected categories will get hidden.


PRIVACY NOTICE: 
YouTube Recommendation Modifier  does not collect *any* personal information, nor does it track any information about which sites you have visited or for how long. It also does not transmit any of your data off your own computer.

for any queries/feedback please fill the form attached on extension.                    

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

ชื่อ Youtube Recommendation Modifier Youtube Recommendation Modifier
ID okiekjodafhephhckglfhcbamodkdibo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-recommendation-mo/okiekjodafhephhckglfhcbamodkdibo
คำอธิบาย Extension that allows user to filter their YouTube Homepage Recommendation.
ขนาดไฟล์ 61.5 KB
จำนวนการติดตั้ง 147
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2023-03-20
วันที่เผยแพร่ 2022-07-10
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา havefocus
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Recommendation Modifier",
    "version": "1.3",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/"
            ],
            "js": [
                "content_main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "sw.js"
    },
    "description": "Extension that allows user to filter their YouTube Homepage Recommendation.",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Youtube Recommendation Modifier"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}