Recommendation filter for YouTube
Customise which recommendations are shown on YouTube.
Cos'è Recommendation filter for YouTube?
Recommendation filter for YouTube è un'estensione di Chrome sviluppata da Leolime, e la sua funzione principale è "Customise which recommendations are shown on YouTube.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Recommendation filter for YouTube
Scarica i file di estensione Recommendation filter for YouTube 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
YouTube can be a powerful tool for learning but sometimes the entertaining recommendations get in the way...
✔️ Why use Recommendation filter for YouTube?
• Are you easily distracted? Use YouTube to it's full potential by hiding distracting recommendations when you are trying to be productive.
• Filter recommendations to only show what you are currently interested in.
• Avoid tempting click bait in the recommendation section by filtering out a topic or YouTuber. Informazioni di Base sull'Estensione
| Nome | |
| ID | eoelfnihmeicibagdaalkdhmmdohcgml |
| URL Ufficiale | https://chromewebstore.google.com/detail/recommendation-filter-for/eoelfnihmeicibagdaalkdhmmdohcgml |
| Descrizione | Customise which recommendations are shown on YouTube. |
| Dimensione del File | 46.61 KB |
| Conteggio Installazioni | 408 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2020-08-19 |
| Data di Pubblicazione | 2020-08-19 |
| Valutazione | 3.83/5 Totale 6 Valutazioni |
| Sviluppatore | Leolime |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | https://docs.google.com/document/d/1nRwylTnUtAHl0rEvWytJNHfBotJ0WvcDa6_BKfwAkMM |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Recommendation filter for YouTube",
"description": "Customise which recommendations are shown on YouTube.",
"version": "1.0.0",
"permissions": [
"*:\/\/www.youtube.com\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"dist\/content\/bundle.js"
],
"css": [
"style\/content.css"
],
"all_frames": true,
"run_at": "document_end"
}
],
"background": {
"scripts": [
"dist\/background\/bundle.js"
]
},
"browser_action": {
"default_popup": "layout\/popup.html",
"default_icon": {
"48": "images\/ic_48.png",
"128": "images\/ic_128.png"
}
},
"options_ui": {
"page": "layout\/popup.html",
"open_in_tab": false
},
"icons": {
"48": "images\/ic_48.png",
"128": "images\/ic_128.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"images\/*.svg",
"style\/*.css"
],
"minimum_chrome_version": "5"
} | |