您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
将知乎首页、热榜、搜索等页面由窄屏改为宽屏显示。
当前为
// ==UserScript== // @name 知乎增强 - 宽屏显示 // @name:zh-CN 知乎增强 - 宽屏显示 // @name:zh-TW 知乎增強 - 寬屏顯示 // @author X.I.U // @description 将知乎首页、热榜、搜索等页面由窄屏改为宽屏显示。 // @description:zh-CN 将知乎首页、热榜、搜索等页面由窄屏改为宽屏显示。 // @description:zh-TW 將知乎首頁、熱榜、搜索等頁面由窄屏改為寬屏顯示。 // @include *://www.zhihu.com/* // @version 1.0.0 // @icon https://static.zhihu.com/static/favicon.ico // @run-at document-start // @namespace https://greasyfork.org/scripts/412212 // ==/UserScript== (function() { var style_Add = document.createElement('style'); style_Add.innerHTML = '.GlobalSideBar,.Question-sideColumn,.ContentLayout-sideColumn,.SearchSideBar{display:none;}.Topstory-mainColumn,.Question-mainColumn,.ContentLayout-mainColumn,.SearchMain{width: 1000px;}.ImageMessage-ImageView{z-index:999 !important;}'; document.head.appendChild(style_Add); })();