|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
油猴脚本
- // ==UserScript==
- // @require https://code.jquery.com/jquery-2.1.4.min.js
- // @name fishc.com.cn 宽屏字体调整
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match https://fishc.com.cn/forum.php?mod=viewthread*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- $(".t_f").css("font-size","20px");
- $(".pl .blockcode ol li").css("font-size","20px");
- $(".pl table.t_table td").css("font-size","20px");
- // Your code here...
- })();
复制代码 |
|