您可以安装Tampermonkey chrome 扩展程序,它是用于 chrome 的greasemonkey,您可以加载可以更改 css的用户脚本并使用 jquery 来修改页面,并且此更改是永久性的,因为脚本将被加载并在您访问时自动执行您在@match
规则中设置的站点,请参阅以下用户脚本,它只是更改页面的背景颜色:
// ==UserScript==
// @name yourscript
// @namespace http://yeeeee/
// @version 0.1
// @description Change bacground color of page
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// @match http://yourtargetsite.com/*
// @copyright 2012+, Me and Brothers
// ==/UserScript==
(function () {
$(document).ready(function(){
style = '<style type="text/css"> body {background-color: #CC7777 ! important;} </style>';
$('head').append(style);
});
})();