惡魔旅館警告器

惡魔旅館警告器! No more 惡魔旅館

当前为 2022-05-19 提交的版本,查看 最新版本

// ==UserScript==
// @name     惡魔旅館警告器
// @version  0.1
// @grant    none
// @include https://www.ptt.cc/bbs/Gossiping/*
// @license MIT
// @description 惡魔旅館警告器! No more 惡魔旅館
// @namespace https://gf.qytechs.cn/users/916025
// ==/UserScript==

console.log("惡魔旅館警告器")

// 黑名單列表
const alertList = [
  "DevilHotel",
]


const authorDivs = document.querySelectorAll(".author")

for (const e of authorDivs){
  if ( alertList.indexOf(e.innerText) != -1) {
  	e.style.color = "red"
    e.offsetParent.style.border = "1px solid red"
  }
}

QingJ © 2025

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