B站直播间简洁化+自动签到

隐藏页面多余没用的东西+自动签到

目前為 2022-06-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name         B站直播间简洁化+自动签到
// @namespace    http://tampermonkey.net/
// @version      1.1.0
// @description  隐藏页面多余没用的东西+自动签到
// @author       似血
// @match        https://live.bilibili.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        GM_addStyle
// @require      https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==
(function() {
    $(".small-title").mouseenter(function(){
        var div=$(".small-title,.watch-text");
        div.animate({opacity:'0'},"slow");
        div.animate({opacity:'1'},"slow");
    });

    $(".small-title").mouseleave(function(){
        div.stop(false,false);
    });

    $(".area-link").mouseenter(function(){
        var div=$(".area-link");
        div.animate({opacity:'0'},"slow");
        div.animate({opacity:'1'},"slow");
    });

    $(".area-link").mouseleave(function(){
        div.stop(false,false);
    });

    $(".room-owner-username").mouseenter(function(){
        var div=$(".room-owner-username");
        div.animate({opacity:'0'},"slow");
        div.animate({opacity:'1'},"slow");
    });

    $(".room-owner-username").mouseleave(function(){
        div.stop(false,false);
    });

    $(".right-ctnr").mouseenter(function(){
        var div=$(".right-ctnr");
        div.animate({opacity:'0'},"slow");
        div.animate({opacity:'1'},"slow");
    });

    $(".right-ctnr").mouseleave(function(){
        div.stop(false,false);
    });

    $('#skin-css').remove()
    $('#my-dear-haruna-vm').hide()
    $('.nowrap').hide()
    $($('.icon-ctnr').get(0)).hide()
    $($('.icon-ctnr').get(1)).hide()
    $('#sections-vm').hide()
    $('#link-footer-vm').hide()
    GM_addStyle('.s-activity-entry {display:none !important}')
    GM_addStyle('.charge-text,.gift-package {color:white !important;background:#fd8fad !important;border-radius:11px !important;padding:3px !important}')
    GM_addStyle('.info-section,.follow-ctnr {display:none !important}')
    GM_addStyle('#head-info-vm, #gift-control-vm {background-color: pink !important}')
    GM_addStyle('.live-status,.up-level-icon {color:white !important;border-color:white !important}')
    GM_addStyle('.live-skin-normal-a-text, .small-title {color:white !important')
    GM_addStyle('.room-owner-username, .small-title, .watched-text,.area-link{background-color:#fd8fad !important;border-radius:11px !important;max-width:1000px !important;font-size:20px !important;line-height:20px !important;padding:3px !important}')
    window.onload = function(){
        $('.checkin-btn').click()
    }
})();

QingJ © 2025

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