YouTube Recommendation Blocker

[OPEN SOURCE] Blocks YouTube recommendations on the front page and on the side of the video player, as well as the comments section

O que é YouTube Recommendation Blocker?

YouTube Recommendation Blocker é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "[OPEN SOURCE] Blocks YouTube recommendations on the front page and on the side of the video player, as well as the comments section".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube Recommendation Blocker

Baixe arquivos de extensão YouTube Recommendation Blocker 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 extension is a super light weight YouTube recommendations and comments blocker. 

Stability not guaranteed! 

Video recommendations on the front page and on the side of the player will be hidden, as well as the comments section.

It hides the content rather than outright removing it, ensuring that nothing breaks in the site's internal workings.

The extension will only request permissions for YouTube, and has no background scripts.

Yo @graphic designers please fix my graphics make a pull request on the git repo

The Github repo is here: https://github.com/Fishy-Fishes/yt-blocker                    

Informações Básicas da Extensão

Nome YouTube Recommendation Blocker YouTube Recommendation Blocker
ID aklbieaecfoidlgjmiipikpgmhbcjoja
URL Oficial https://chromewebstore.google.com/detail/youtube-recommendation-bl/aklbieaecfoidlgjmiipikpgmhbcjoja
Descrição [OPEN SOURCE] Blocks YouTube recommendations on the front page and on the side of the video player, as well as the comments section
Tamanho do Arquivo 3.56 KB
Contagem de Instalações 1,412
Versão Atual 2.1
Última Atualização 2021-10-18
Data de Publicação 2021-10-18
Classificação 4.75/5 Total de 4 Avaliações
Desenvolvedor Unknown
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Fishy-Fishes/yt-blocker
URL da Página de Ajuda https://github.com/Fishy-Fishes/yt-blocker
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Recommendation Blocker",
    "description": "[OPEN SOURCE] Blocks YouTube recommendations on the front page and on the side of the video player, as well as the comments section",
    "version": "2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "injection.js"
            ],
            "run_at": "document_start"
        }
    ]
}