Greasy Fork is available in English.
Set BackgroundColor of article page to base3 color of SolarizedLight Theme
当前为
// ==UserScript==
// @name SolarizedLight_BackgroundColor
// @namespace https://mpcx.me/
// @version 0.1
// @description Set BackgroundColor of article page to base3 color of SolarizedLight Theme
// @author CharlesMa
// @match https://sspai.com/article/*
// @grant none
// ==/UserScript==
window.addEventListener('load', function() {
var article = document.getElementsByClassName("series-article-wrapper");
article[0].style.backgroundColor = "#fdf6e3";
}, false);