您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Theme for change background on LOLZ
// ==UserScript== // @name Custom BG for LOLZ // @version 1.2 // @description Theme for change background on LOLZ // @author Суетолог // @match *://*.lolz.guru/* // @match *://*.lolz.live/* // @match *://*.zelenka.guru/* // @match *://*.lzt.market/* // @match *://*.lolz.market/* // @run-at document-start // @grant GM_addStyle // @icon https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru // @namespace https://lolz.live/lztf // ==/UserScript== let img; img = "https://i.imgur.com/CJBtgKA.png" let theme; theme = `body{background-image:linear-gradient(rgba(37,37,37,0.8),rgba(37,37,37,0.8)),url(${img});background-size:100%;background-attachment:fixed;color:#d6d6d6;}` GM_addStyle(theme);