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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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\/*" ] } ] } |