YouTube Rabbit Hole Sealant
Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.
Cos'è YouTube Rabbit Hole Sealant?
YouTube Rabbit Hole Sealant è un'estensione di Chrome sviluppata da ezeYaniv, e la sua funzione principale è "Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Rabbit Hole Sealant
Scarica i file di estensione YouTube Rabbit Hole Sealant 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
This Chrome extension hides some of YouTube's most attention-grabbing, time-wasting components: the 'suggested videos' sidebar and the comment section.
Clicking the extension icon allows you to quickly toggle the following options:
• Show or hide the 'suggested videos' sidebar
• Show or hide the comment section Informazioni di Base sull'Estensione
| Nome | |
| ID | pljkdepedlaeibebpmkckpefajpjkcak |
| URL Ufficiale | https://chromewebstore.google.com/detail/youtube-rabbit-hole-seala/pljkdepedlaeibebpmkckpefajpjkcak |
| Descrizione | Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section. |
| Dimensione del File | 27.64 KB |
| Conteggio Installazioni | 87 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-08-21 |
| Data di Pubblicazione | 2021-08-21 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | ezeYaniv |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Rabbit Hole Sealant",
"description": "Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.",
"version": "1.0",
"manifest_version": 3,
"icons": {
"16": "assets\/images\/RabbitHoleSealantLogo_Rect_16.png",
"24": "assets\/images\/RabbitHoleSealantLogo_Rect_24.png",
"32": "assets\/images\/RabbitHoleSealantLogo_Rect_32.png",
"48": "assets\/images\/RabbitHoleSealantLogo_Rect_48.png",
"128": "assets\/images\/RabbitHoleSealantLogo_Rect_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"assets\/js\/hideComponents.js"
]
}
],
"action": {
"default_title": "Rabbit Hole Sealant: make YouTube less addicting",
"default_icon": {
"16": "assets\/images\/RabbitHoleSealantLogo_Rect_16.png",
"24": "assets\/images\/RabbitHoleSealantLogo_Rect_24.png",
"32": "assets\/images\/RabbitHoleSealantLogo_Rect_32.png",
"48": "assets\/images\/RabbitHoleSealantLogo_Rect_48.png",
"128": "assets\/images\/RabbitHoleSealantLogo_Rect_128.png"
},
"default_popup": "assets\/popup\/popup.html"
},
"permissions": [
"storage"
]
} | |