Greasy Fork is available in English.
自动将特定网站的页面背景颜色改为淡蓝色
当前为
// ==UserScript==
// @name 页面背景颜色修改脚本
// @namespace http://yournamespace.com/
// @version 0.2
// @description 自动将特定网站的页面背景颜色改为淡蓝色
// @author Your Name
// @match https://www.google.ru/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.body.style.backgroundColor = 'lightblue';
})();