Greasy Fork is available in English.
将知乎首页、热榜、搜索等页面由窄屏改为宽屏显示。
当前为
// ==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 http://greasyfork.icu/users/457025
// ==/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);
})();