Youtube focus

Blocks Youtube recommendations so that you see only what you search.

什么是Youtube focus?

Youtube focus是由Priyanshu Nayan开发的Chrome扩展程序,该扩展的主要功能是“Blocks Youtube recommendations so that you see only what you search.”。

扩展截图

screenshot

下载Youtube focus扩展crx文件

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

扩展使用说明

                        This extension removes all the recommended videos that you click to waste time, also it removes comments which i s not productive and also removes autoplay which makes you stick to the site and keep binge watching. Just search the videos you necessarily want to watch and that's it. That's what youtube was built for, that's what youtube should be used for.                    

扩展基本信息

名称 Youtube focus Youtube focus
ID elnjcclakbcdhbljljckfokbpmcicemo
官方URL https://chromewebstore.google.com/detail/youtube-focus/elnjcclakbcdhbljljckfokbpmcicemo
简介 Blocks Youtube recommendations so that you see only what you search.
文件大小 10.62 KB
安装次数 40
当前版本 1.0.1
更新时间 2020-04-08
上架时间 2020-04-08
评分 4.00/5 共4次评分
开发者 Priyanshu Nayan
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/priyanshunayan/youtube-focus
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube focus",
    "version": "1.0.1",
    "description": "Blocks Youtube recommendations so that you see only what you search.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "permissions": [
            "storage",
            "tabs",
            "declarativeContent"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/",
                "*:\/\/youtube.com\/",
                "*:\/\/youtube.com\/watch*",
                "*:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html"
    },
    "default_icon": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}