// ==UserScript== // @name 本地黑名单-哔哩哔哩 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 我的地盘,我做主! // @author lavaf // @match https://www.bilibili.com/video/* // @match https://www.bilibili.com/* // @match https://search.bilibili.com/all?keyword* // @grant none // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; let blackList=['5942248','38257770','1715577','95414253','11374267','192534943','80004783','129872455', '14753117','345938075','270020512','15884281','299728568','328743982','38101837','320788365','400938613', '371985983','276243252','198827461','360103800','321652','11231122','243733225','358255794','417247887','66931931', '10155344','430828802','210161175','13132237','7900974','15794932','43692180','472117083','204198336','14147464','229557152', '20646947','229557152','317120823','286047162','220912852'] setInterval(function () { //console.log('hello') let nameList=$("a.name"); nameList.each(function (i,e) { if ($(e).attr('data-lavaf') !== '1') { let id = $(e).attr("data-usercard-mid"); for (const blackListKey in blackList) { if (blackList.hasOwnProperty(blackListKey)) { if (blackList[blackListKey] === id) { //console.log(id); $(e).text(id) let user= $(e).parent(); if (user.children().length === 3) { user.children("span").text("此用户已经被屏蔽"); } else { user.next().text("此用户已经被屏蔽") } $(e).attr('data-lavaf','1'); } } } } }); let nameList1=$("div.video-card-common"); nameList1.each(function (i,e) { if ($(e).attr('data-lavaf') !== '1') { let id = $(e).children("a.up").attr("href"); for (const blackListKey in blackList) { if (blackList.hasOwnProperty(blackListKey)) { if ('//space.bilibili.com/'+ blackList[blackListKey]+'/' === id) { //console.log(id); $(e).find("img").attr('src','') $(e).find('a.title').text("此用户已被屏蔽"); $(e).attr('data-lavaf','1'); } } } } }); let nameList2=$("li.video-item"); nameList2.each(function (i,e) { if ($(e).attr('data-lavaf') !== '1') { let id = $(e).find("a.up-name").attr("href"); if (id == null) { console.log(e) return } for (const blackListKey in blackList) { if (blackList.hasOwnProperty(blackListKey)) { //https://space.bilibili.com/220912852?from=search&seid=2665344755575079991 //console.log(id) if (id.indexOf('//space.bilibili.com/'+ blackList[blackListKey])===0 ) { //console.log(id); $(e).find("img").attr('src','') $(e).find('a.up-name').text("此用户已被屏蔽"); $(e).find('a.title').text("此用户已被屏蔽") $(e).attr('data-lavaf','1'); } } } } }); },500) })();