Hide YouTube Thumbnails
Hide YouTube Thumbnails for less clickbaity browsing
Cos'è Hide YouTube Thumbnails?
Hide YouTube Thumbnails è un'estensione di Chrome sviluppata da Adam Jones, e la sua funzione principale è "Hide YouTube Thumbnails for less clickbaity browsing".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide YouTube Thumbnails
Scarica i file di estensione Hide YouTube Thumbnails 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
Simply hides thumbnails on YouTube to have a more peaceful and less distracting browsing experience. Also useful for avoiding spoilers or inappropriate imagery. Options available: - Temporarily turn off hiding - Blur rather than hide thumbnails - Show thumbnails on hover - Show only solid color - Show thumbnails on search results / playlist / watch / subscriptions / channel pages This extsion could also be descibed as blocking YouTube thumbnails on videos, disabling YouTube thumbnails on videos, blurring YouTube thumbnails on videos. People have found it useful for: - Hiding distracting or inappropriate YouTube thumbnails in class when teaching students - Hiding YouTube thumbnails to reduce distraction and procrastination when studying or working - Hiding YouTube thumbnails to avoid spoilers in the video
Informazioni di Base sull'Estensione
Nome | Hide YouTube Thumbnails |
ID | phmcfcbljjdlomoipaffekhgfnpndbef |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-youtube-thumbnails/phmcfcbljjdlomoipaffekhgfnpndbef |
Descrizione | Hide YouTube Thumbnails for less clickbaity browsing |
Dimensione del File | 26.04 KB |
Conteggio Installazioni | 56,897 |
Versione Corrente | 2.5.0 |
Ultimo Aggiornamento | 2023-10-31 |
Data di Pubblicazione | 2019-04-12 |
Valutazione | 4.83/5 Totale 83 Valutazioni |
Sviluppatore | Adam Jones |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/domdomegg/hideytthumbnails-extension |
URL della Pagina di Aiuto | https://github.com/domdomegg/hideytthumbnails-extension/issues |
URL della Pagina della Politica sulla Privacy | https://adamjones.me/privacy-policies |
Lingue Supportate | de,en,fr,nl,es,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.5.0", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "homepage_url": "https:\/\/github.com\/domdomegg\/hideytthumbnails-extension", "browser_specific_settings": { "gecko": { "id": "{17c4514d-71fa-4633-8c07-1fe0b354c885}" }, "gecko_android": [] }, "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png", "512": "img\/icon512.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "common.js", "inject.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "browser_style": true }, "permissions": [ "storage" ] } |