Better YouTube Search
Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.
Cos'è Better YouTube Search?
Better YouTube Search è un'estensione di Chrome sviluppata da chadwkirk, e la sua funzione principale è "Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Better YouTube Search
Scarica i file di estensione Better YouTube Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Better YouTube Search |
ID | ipnifedcddhdmpnldgfioocmglegkccj |
URL Ufficiale | https://chromewebstore.google.com/detail/better-youtube-search/ipnifedcddhdmpnldgfioocmglegkccj |
Descrizione | Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results. |
Dimensione del File | 2.31 MB |
Conteggio Installazioni | 1,347 |
Versione Corrente | 2.0 |
Ultimo Aggiornamento | 2023-07-26 |
Data di Pubblicazione | 2023-05-07 |
Valutazione | 3.68/5 Totale 22 Valutazioni |
Sviluppatore | chadwkirk |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } ] } |