您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
知乎的视频页面样式不好看,做了简单优化
// ==UserScript== // @name 知乎视频页面 优化 // @version 0.1 // @description 知乎的视频页面样式不好看,做了简单优化 // @author 写代码的猫叔 // @match https://www.zhihu.com/people/* // @grant GM_addStyle // @namespace https://greasyfork.org/users/825126 // ==/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; } `) })();