Greasy Fork is available in English.

change SP background

2021/8/27 上午7:26:23

// ==UserScript==
// @name        change SP background
// @namespace   Violentmonkey Scripts
// @match       https://www.pottersschool.org/student/
// @grant       none
// @version     1.1
// @author      Yui
// @description 2021/8/27 上午7:26:23
// ==/UserScript==

var displayname = true; //true will hide the name tag, false will display the name tag
var bg_url = "replace me!"

document.body.onload = function(){
  if (displayname)
    {
      var div = document.getElementById("myDisplayname");  
      div.style.display = "none";
    }
}

document.body.style.backgroundImage = "url('" + bg_url + "')";