Disable Youtube Shorts Layout

Disables youtube short layout on desktop (not the videos themselves).

O que é Disable Youtube Shorts Layout?

Disable Youtube Shorts Layout é uma extensão do Chrome desenvolvida por tukars, e sua principal característica é "Disables youtube short layout on desktop (not the videos themselves).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Disable Youtube Shorts Layout

Baixe arquivos de extensão Disable Youtube Shorts Layout 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 disables the shorts layout on desktop and instead allows for the default playback to be used. Works how youtube used to work.

*Please ensure you refresh any YouTube tabs beforehand in order for this to work*

NOTE: If you are using other extensions that modify the youtube experience, they may cause unexpected behaviour and interference with how this extension works. Please ensure you disable any features from other extensions that interfere with how shorts are displayed to get the intended experience.
* "Enhancer for YouTube™" extension by www.mrfdev.com: Disable "Convert Shorts" option.

Source Code:
https://github.com/probablytukars/Disable-Youtube-Shorts                    

Informações Básicas da Extensão

Nome Disable Youtube Shorts Layout Disable Youtube Shorts Layout
ID lgdgebkjhcbilocmnfkiiicfggjlbdfg
URL Oficial https://chrome.google.com/webstore/detail/disable-youtube-shorts-la/lgdgebkjhcbilocmnfkiiicfggjlbdfg
Descrição Disables youtube short layout on desktop (not the videos themselves).
Tamanho do Arquivo 4.03 KB
Contagem de Instalações 1,269
Versão Atual 2.5
Última Atualização 2023-07-03
Data de Publicação 2022-04-29
Classificação 4.47/5 Total de 19 Avaliações
Desenvolvedor tukars
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable Youtube Shorts Layout",
    "description": "Disables youtube short layout on desktop (not the videos themselves).",
    "version": "2.5",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ]
}