Sleazy Fork is available in English.

Jellyfin番号过滤

调用jellyfin API,突出显示本地不存在的影片

< Commentaires sur Jellyfin番号过滤

Avis: Bon - le script fonctionne correctement

§
Posté le: 2024-06-15

非常好用,感谢作者! 另外,将eventType改成'load',再添加以下代码,就可以在页面加载完成时自动运行,无需快捷键:

CONFIG.forEach(config => {
    if (location.hostname.includes(config.site)) {
        if (config.eventType === 'load') {
            window.addEventListener('load', () => {
                setTimeout(config.cb, config.timeout || 0);
            });
        } else if (config.eventType === 'keypress') {
            registerDoubleEvent(config.eventType, config.keys, config.cb, config.timeout);

Poster une réponse

Connectez-vous pour poster une réponse.