去除incoPat检索结果页面两侧的空白,有效利用宽屏显示器
目前為
// ==UserScript==
// @name incopat占满全屏
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 去除incoPat检索结果页面两侧的空白,有效利用宽屏显示器
// @author You
// @include *incopat.com/*
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(".middle,#container{width:100% !important;}");
})();