Recommendation filter for YouTube

Customise which recommendations are shown on YouTube.

什么是Recommendation filter for YouTube?

Recommendation filter for YouTube是由Leolime开发的Chrome扩展程序,该扩展的主要功能是“Customise which recommendations are shown on YouTube.”。

扩展截图

screenshot
screenshot
screenshot

下载Recommendation filter for YouTube扩展crx文件

下载Recommendation filter for YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        YouTube can be a powerful tool for learning but sometimes the entertaining recommendations get in the way...

✔️ Why use Recommendation filter for YouTube?
• Are you easily distracted? Use YouTube to it's full potential by hiding distracting recommendations when you are trying to be productive.
• Filter recommendations to only show what you are currently interested in.
• Avoid tempting click bait in the recommendation section by filtering out a topic or YouTuber.                    

扩展基本信息

名称 Recommendation filter for YouTube Recommendation filter for YouTube
ID eoelfnihmeicibagdaalkdhmmdohcgml
官方URL https://chromewebstore.google.com/detail/recommendation-filter-for/eoelfnihmeicibagdaalkdhmmdohcgml
简介 Customise which recommendations are shown on YouTube.
文件大小 46.61 KB
安装次数 408
当前版本 1.0.0
更新时间 2020-08-19
上架时间 2020-08-19
评分 3.83/5 共6次评分
开发者 Leolime
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://docs.google.com/document/d/1nRwylTnUtAHl0rEvWytJNHfBotJ0WvcDa6_BKfwAkMM
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Recommendation filter for YouTube",
    "description": "Customise which recommendations are shown on YouTube.",
    "version": "1.0.0",
    "permissions": [
        "*:\/\/www.youtube.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "dist\/content\/bundle.js"
            ],
            "css": [
                "style\/content.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "dist\/background\/bundle.js"
        ]
    },
    "browser_action": {
        "default_popup": "layout\/popup.html",
        "default_icon": {
            "48": "images\/ic_48.png",
            "128": "images\/ic_128.png"
        }
    },
    "options_ui": {
        "page": "layout\/popup.html",
        "open_in_tab": false
    },
    "icons": {
        "48": "images\/ic_48.png",
        "128": "images\/ic_128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "images\/*.svg",
        "style\/*.css"
    ],
    "minimum_chrome_version": "5"
}