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: