Greasy Fork

Greasy Fork is available in English.

知乎网站样式优化(增加摸鱼友好性)

修改样式,个人偏好内容栏靠右,适合不适宜目光总是左撇到电脑最左边的打工人

目前为 2023-03-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         知乎网站样式优化(增加摸鱼友好性)
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  修改样式,个人偏好内容栏靠右,适合不适宜目光总是左撇到电脑最左边的打工人
// @author       fxalll
// @match        https://www.zhihu.com/*
// @match        https://www2.zhihu.com/*
// @match        https://www.zhihu.com/question/*
// @match        https://www.zhihu.com/question/*/answer/*
// @match        https://www.zhihu.com/search*
// @match        https://www.zhihu.com/collection/*
// @icon         https://static.zhihu.com/heifetz/favicon.ico
// @grant        none
// @license      GPL-3.0 License
// ==/UserScript==

(function() {
    'use strict';
    document.querySelector('.Topstory-container').style.flexDirection="row-reverse"
    document.querySelector('.Topstory-content').style.marginLeft='50px'
    document.querySelector('.Topstory-content').style.marginRight='30px'
    document.querySelector('.css-1qyytj7').style.marginLeft='50px'
})();