抱歉,您的浏览器无法访问本站

本页面需要浏览器支持(启用)JavaScript


了解详情 >

直接上代码:

// ==UserScript==
// @name         知乎视频页面 优化
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.zhihu.com/people/*
// @icon         https://www.google.com/s2/favicons?domain=zhihu.com
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
        #Profile-zvideos .List-item{
            width:300px;
            display:inline-block;
        }
        #Profile-zvideos .ContentItem-meta,#Profile-zvideos .RichContent-inner{
            display:none;
        }

        #Profile-zvideos .ContentItem-actions{
            flex-wrap:wrap;
            width: 100%;
        }

        #Profile-zvideos .ContentItem-title{
            font-size:15px;
            margin-bottom: 10px;
        }

        #Profile-zvideos .RichContent-cover{
            width: 300px;    height: 184px;
        }
    `)
    // Your code here...
})();

评论