您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes background.webp slowly move diagonally to top left on Blacket blooks background
- // ==UserScript==
- // @name Blacket Moving Background Diagonal
- // @version 1.0.0
- // @description Makes background.webp slowly move diagonally to top left on Blacket blooks background
- // @match https://*.blacket.org/*
- // @grant none
- // @namespace https://gf.qytechs.cn/users/1479014
- // ==/UserScript==
- (() => {
- const css = `
- @keyframes animatedBackground {
- 0% {
- background-position: 0 0;
- }
- 100% {
- background-position: -100px -100px;
- }
- }
- .styles__blooksBackground___3oQ7Y-camelCase {
- background-image: url('/content/background.webp') !important;
- background-repeat: repeat;
- background-size: auto;
- animation: animatedBackground 9s linear infinite;
- -moz-animation: animatedBackground 9s linear infinite;
- -webkit-animation: animatedBackground 9s linear infinite;
- -ms-animation: animatedBackground 9s linear infinite;
- -o-animation: animatedBackground 9s linear infinite;
- }
- `;
- const style = document.createElement('style');
- style.textContent = css;
- document.head.appendChild(style);
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址