您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
诗文竖排阅读
// ==UserScript== // @name vertical ltr for poems 诗文竖排阅读 // @namespace http://tampermonkey.net/ // @version 2024-12-21 // @description 诗文竖排阅读 // @author SodaCris // @match https://www.gushiwen.cn/** // @icon https://www.google.com/s2/favicons?sz=64&domain=gushiwen.cn // @grant GM_addStyle // @license GPLv3 // ==/UserScript== (function() { 'use strict'; GM_addStyle(` div.left { div.cont{ display: flex; writing-mode: vertical-rl; } .sons { display: flex; justify-content: flex-start; flex-direction: row-reverse; } } .maintopbc .maintop .cont { width: 100% !important; } .main3 { width: 100% !important; } .main3 .left { margin-left: 5%; .sons { height: 300px; } } .left { margin-left: 5% !important; } .right { width: 100%; } `); document.querySelector('.right>.son2').style.cssFloat = "none"; document.querySelector('.right').style.cssFloat = "none"; })();