// ==UserScript== // @name 转换body为绿豆沙色 // @namespace https://greasyfork.org/zh-CN/users/190580 // @version 0.2 // @author joeonshaw // @match https://* // @grant none // @include http://* // @include https://* // @include file://* // @description 转化body颜色 // @downloadURL none // ==/UserScript== 'use strict'; (function() { const bodyCol = document.querySelector("body") bodyCol.style.backgroundColor = "rgba(140, 199, 181, 0.5)" })();