@@white-site

让 hdhome 背景变浅色

目前为 2017-12-01 提交的版本。查看 最新版本

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址