Greasy Fork is available in English.

YouTube - Proper Description

Watch page description below the video with proper open/close toggle, instead of a side bar.

< Feedback em YouTube - Proper Description

Avaliação: Bom - o script funciona

§
Publicado: 16/07/2023

how to auto expand description

q1kAutor
§
Publicado: 16/07/2023

That is not a part of the script and never will be.

§
Publicado: 16/07/2023

how to auto expand description

That is not a part of the script and never will be.

q1kAutor
§
Publicado: 16/07/2023

how to auto expand description

That is not a part of the script and never will be.

mmkay

q1kAutor
§
Publicado: 16/07/2023

If you really want to have the description auto open, add this at the end of the script.

// auto open description
findElement("#meta ytd-expander").then(function(el){
    openDescription(el);
});
function openDescription(aed) {
    var mo = new MutationObserver(function(mutations) {
        if(aed.hasAttribute("collapsed")) {
            aed.removeAttribute("collapsed");
            //mo.disconnect();
        }
    });
    mo.observe(aed, {
        childList: true,
        subtree: true,
        characterData: true
    });
}

Publicar resposta

Faça o login para publicar uma resposta.