哔哩哔哩收藏夹显示UP

哔哩哔哩收藏夹显示UP。

// ==UserScript==
// @name         哔哩哔哩收藏夹显示UP
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  哔哩哔哩收藏夹显示UP。
// @author       You
// @match        https://space.bilibili.com/*/favlist*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(function() {
        var authors = document.getElementsByClassName("author");
        var pubdates = document.getElementsByClassName("meta pubdate");
        var authors_length = authors.length;
        var pubdates_length = pubdates.length;
        console.log("authors length = " + authors_length);
        console.log("pubdates length = " + pubdates_length);
        if(authors_length == pubdates_length)
        {
            for( var i_i = authors.length-1 ; i_i>-1 ; i_i-- )
            {
                pubdates[i_i].style.height="40px";
                pubdates[i_i].style.lineHeight="20px";
                pubdates[i_i].innerHTML = pubdates[i_i].innerHTML + "<br>" + authors[i_i].innerHTML;
            }
        }
    }, 3000);
})();

QingJ © 2025

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