您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ab站背景更改css样式表
当前为
此脚本不应直接安装,它是供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/436151/992354/ab%E7%AB%99%E8%83%8C%E6%99%AF%E6%9B%B4%E6%94%B9css%E8%84%9A%E6%9C%AC.js
// ==UserScript== // @name ab站背景更改css脚本 // @version 1.0.0-alpha // @description ab站背景更改css样式表 // @author 桜ミク // @license MIT // @namespace https://gf.qytechs.cn/users/599643 // @grant GM_addStyle // @run-at document-start // @include https://www.bilibili.com/* // @include *://*.bilibili.com/* // @include https://message.bilibili.com/* // @include https://t.bilibili.com/* // @include https://manga.bilibili.com/* // @include https://live.bilibili.com/blackboard/* // @include https://www.bilibili.com/page-proxy/* // @include https://www.acfun.cn/* // @include *://*.acfun.cn/* // ==/UserScript== (function() { let css = ""; css += ` li { list-style-type: none; } .SakuraBackground { background-repeat: no-repeat; background-position: center 0; background-size: cover; zoom: 1; width: 100%; height: 100%; top: 0; left: 0; -webkit-background-size: cover; z-index: -1; } .sakuraSpanRoller { user-select: none; width: auto; font-size: 1.4em; font-weight: bold; left: 0; bottom: 0; z-index: 100; background-color: rgb(45, 209, 173, 0.5); border-top-right-radius: 1vw; position: fixed; } .divBackgroundSettingsBox { background-color: rgba(255, 192, 203, 0.911); border-top-right-radius: 2vw; left: 0px; bottom: 0px; width: auto; height: 240px; position: fixed; display: none; } .divBackgroundSettingsBox .firstBox { width: 100%; height: auto; } .divBackgroundSettingsBox .firstBox .changeBoxOne span { user-select: none; } .divBackgroundSettingsBox .firstBox .changeBoxOne .backgroundDefaultClickToChange { display: flex; } .divBackgroundSettingsBox .firstBox .changeBoxOne .backgroundDefaultClickToChange li { margin: 0 10px 0 0; } .divBackgroundSettingsBox .firstBox .changeBoxOne .backgroundDefaultClickToChange li img { width: 100px; height: 100px; border-radius: 10px; }`; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { let styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址