全部直播间页面隐藏聊天室直播间

全部直播间页面隐藏聊天室直播间(⊙o⊙)

// ==UserScript==
// @name         全部直播间页面隐藏聊天室直播间
// @namespace    https://www.bilibili.com/
// @version      0.0.1
// @description  全部直播间页面隐藏聊天室直播间(⊙o⊙)
// @author       能用就行
// @match        *://live.bilibili.com/all*
// @icon         https://www.bilibili.com//favicon.ico
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
    #card[data-test="true_1"]{
        display: none !important;
    }
    `)

    var jc_room_id_list = GM_getValue('jc_room_id_list', []);
    var yc_room_id_list = GM_getValue('yc_room_id_list', []);

    function 设置状态() {
        const bs = document.querySelectorAll('#card');
        bs.forEach(b => {
            const href = b.getAttribute('href');
            const room_id_match = href.match(/\/(\d+)\?/);
            let room_id;
            if (room_id_match) {
                room_id = room_id_match[1];
            } else {
                console.error('无法从链接中提取room_id:', href);
                return;
            }

            if (jc_room_id_list.includes(room_id)) {
                b.setAttribute('data-test', 'true_0');
                b.parentElement.setAttribute('data-test', 'true_0');
            }

            if (yc_room_id_list.includes(room_id)) {
                b.setAttribute('data-test', 'true_1');
                b.parentElement.setAttribute('data-test', 'true_1');
            }
        });
        console.log('设置一次');
    }

    function 初始化属性() {
        const as = document.querySelectorAll('#card');
        as.forEach(a => {
            a.setAttribute('data-test', 'false');
        });
        console.log('初始化一次');
    }

    async function 检查() {
        const cards = document.querySelectorAll('#card[data-test="false"]');
        let fetchPromises = [];
        cards.forEach(card => {
            const href = card.getAttribute('href');
            const room_id_match = href.match(/\/(\d+)\?/);
            let room_id;

            if (room_id_match) {
                room_id = room_id_match[1];
            } else {
                console.error('无法从链接中提取room_id:', href);
                return;
            }

            if (!jc_room_id_list.includes(room_id) && !yc_room_id_list.includes(room_id)) {
                const params = new URLSearchParams({
                    room_id: room_id
                });
                const url = `https://api.live.bilibili.com/room/v1/Room/get_info?${params.toString()}`;

                fetchPromises.push(
                    fetch(url, {
                        method: 'GET',
                        headers: {
                            'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Edg/126.0.0.0'
                        }
                    })
                    .then(response => response.json())
                    .then(data => {
                        if (data.data.parent_area_name === "聊天室") {
                            console.info('发现聊天室一个', room_id);
                            if (!jc_room_id_list.includes(room_id)) {
                                jc_room_id_list.push(room_id);
                            }
                            if (!yc_room_id_list.includes(room_id)) {
                                yc_room_id_list.push(room_id);
                            }
                        } else {
                            console.log('非聊天室:', room_id);
                            if (!jc_room_id_list.includes(room_id)) {
                                jc_room_id_list.push(room_id);
                            }
                        }
                    })
                    .catch(error => {
                        console.error('Error:', error);
                    })
                );
            }
        });

        await Promise.all(fetchPromises);

        GM_setValue('jc_room_id_list', jc_room_id_list);
        GM_setValue('yc_room_id_list', yc_room_id_list);
        console.log('储存一次');

        设置状态();
    }

    window.onload = function() {
        const origOpen = XMLHttpRequest.prototype.open;
        XMLHttpRequest.prototype.open = function(method, url, async, user, password) {
            this.addEventListener('load', function() {
                if (this.responseURL.includes('getUserRecommend') || this.responseURL.includes('getListByArea')) {
                    初始化属性();
                    setTimeout(() => {
                        console.log('1秒后执行');
                        检查();
                    }, 1000);
                }
            });
            origOpen.call(this, method, url, async, user, password);
        };

        初始化属性();
        设置状态();
    };

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址