To whitelist YouTube channels in uBlock Origin
< YouTube - whitelist channels in uBlock Origin 피드백으로 돌아가기
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; }
답글을 게시하려면 로그인하세요.
Wasn't working but simple fix
Just replaced the query selector with: