Greasy Fork is available in English.

YouTube - whitelist channels in uBlock Origin

To whitelist YouTube channels in uBlock Origin

< Commentaires sur YouTube - whitelist channels in uBlock Origin

Question / commentaire

§
Posté le: 19/07/2019

Wasn't working but simple fix

Just replaced the query selector with:

var link = document.querySelector('[id="owner-name"] a[href^="/user/"]');
if ( link === null ) {
    link = document.querySelector('[id="owner-name"] a[href^="/channel/"]');
    if ( link === null)
        return;
}

Poster une réponse

Connectez-vous pour poster une réponse.