🏠 Home 

Greasy Fork is available in English.

格式化ithome.com网站,浏览效率提高十倍

try to Make ITHome.com to Simple.


安装此脚本?
// ==UserScript==
// @name         格式化ithome.com网站,浏览效率提高十倍
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to Make ITHome.com to Simple.
// @author       oixqiu
// @match        https://www.ithome.com/
// @grant        none
// @license GPLv3
// ==/UserScript==
(function() {
'use strict';
$('.fl').remove();
$('.fr').css("width","100%");
$('.nl').css("width","45%");
$('a').css("width","80%");
$('#side_func').remove();
$('#top').remove();
$('#nav').remove();
$('#tt').remove();
$("#t-b").css("display","block")
$('.nl').css("width","100%");   // $('#n').css("width","100%");
$(".t-b").addClass("sel");
})();