YouTube Rabbit Hole Sealant

Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.

O que é YouTube Rabbit Hole Sealant?

YouTube Rabbit Hole Sealant é uma extensão do Chrome desenvolvida por ezeYaniv, e sua principal característica é "Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Rabbit Hole Sealant

Baixe arquivos de extensão YouTube Rabbit Hole Sealant no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome YouTube Rabbit Hole Sealant YouTube Rabbit Hole Sealant
ID pljkdepedlaeibebpmkckpefajpjkcak
URL Oficial https://chromewebstore.google.com/detail/youtube-rabbit-hole-seala/pljkdepedlaeibebpmkckpefajpjkcak
Descrição Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.
Tamanho do Arquivo 27.64 KB
Contagem de Instalações 87
Versão Atual 1.0
Última Atualização 2021-08-21
Data de Publicação 2021-08-21
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor ezeYaniv
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}