Greasy Fork

页面背景颜色修改脚本

自动将特定网站的页面背景颜色改为淡蓝色

目前为 2024-12-06 提交的版本。查看 最新版本

// ==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';
})();