Greasy Fork

来自缓存

Greasy Fork is available in English.

YouTube - whitelist channels in uBlock Origin

To whitelist YouTube channels in uBlock Origin

< 脚本YouTube - whitelist channels in uBlock Origin的反馈

提问/评论

§
发表于:2019-07-19

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;
}

发表回复

登录以发表回复。