Better YouTube Search
Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.
Wat is Better YouTube Search?
Better YouTube Search is een Chrome-extensie ontwikkeld door chadwkirk, en de belangrijkste functie is "Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.".
Extensie Screenshots
Download het CRX-bestand van de extensie Better YouTube Search
Download Better YouTube Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Better YouTube Search |
ID | ipnifedcddhdmpnldgfioocmglegkccj |
Officiële URL | https://chromewebstore.google.com/detail/better-youtube-search/ipnifedcddhdmpnldgfioocmglegkccj |
Beschrijving | Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results. |
Bestandsgrootte | 2.31 MB |
Aantal Installaties | 1,347 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2023-07-26 |
Publicatiedatum | 2023-05-07 |
Beoordeling | 3.68/5 Totaal 22 Beoordelingen |
Ontwikkelaar | chadwkirk |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } ] } |