让 hdhome 背景变浅色
当前为
// ==UserScript==
// @name @@white-site
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 让 hdhome 背景变浅色
// @author You
// @match http://hdhome.org/*
// @require https://cdn.bootcss.com/jquery/1.12.2/jquery.min.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$('body, table, .torrents td').css({
"background-color": "#efefef",
"color": "#000"
});
$('table a').css('color', 'blue');
console.log('color changed');
})();