Better YouTube Search

Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.

什么是Better YouTube Search?

Better YouTube Search是由chadwkirk开发的Chrome扩展程序,该扩展的主要功能是“Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.”。

扩展截图

screenshot

下载Better YouTube Search扩展crx文件

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

扩展使用说明

                        With one click of a button, you can now find what you're actually looking for when searching on YouTube! This extension stops YouTube from showing you those "People Also Watched", "For You" and "Suggested" videos when you search for something.

This is helpful for when you are searching for something on YouTube and the first few search results aren't what you're looking for.

You can now go back to how YouTube used to be with the Better YouTube Search extension!                    

扩展基本信息

名称 Better YouTube Search Better YouTube Search
ID ipnifedcddhdmpnldgfioocmglegkccj
官方URL https://chromewebstore.google.com/detail/better-youtube-search/ipnifedcddhdmpnldgfioocmglegkccj
简介 Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.
文件大小 2.31 MB
安装次数 1,347
当前版本 2.0
更新时间 2023-07-26
上架时间 2023-05-07
评分 3.68/5 共22次评分
开发者 chadwkirk
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Better YouTube Search",
    "description": "Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.",
    "version": "2.0",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/better-youtube-search-icon-16-grey.png",
        "32": "images\/better-youtube-search-icon-32.png",
        "48": "images\/better-youtube-search-icon-48.png",
        "128": "images\/better-youtube-search-icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                "style.css"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ]
        }
    ]
}