Greasy Fork

Greasy Fork is available in English.

m.inftab.com custom background

custom background for m.inftab.com

当前为 2025-06-15 提交的版本,查看 最新版本

// ==UserScript==
// @name m.inftab.com custom background
// @namespace http://tampermonkey.net/
// @version 0.1
// @description custom background for m.inftab.com
// @author Stijn Bousard | boossy
// @license MIT
// @match https://m.inftab.com/*
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
 var head, style;
 head = document.getElementsByTagName('head')[0];
 if (!head) { return; }
 style = document.createElement('style');
 style.type = 'text/css';
 style.innerHTML = css;
 head.appendChild(style);
}
addGlobalStyle('.wallpaper.ready { background-image: url(https://bsy.boossy.be/img/myBackground.jpg) !important; }');
addGlobalStyle('.home-icon-item .icon-name[data-v-74c35cb7] { font-size: 8px; color: rgb(221, 221, 221); }');