// ==UserScript== // @name 强制展开所有标签 // @namespace http://lofter.com // @version 1.0 // @description 强制展开默认折叠的所有标签 // @author boni // @match https://www.lofter.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=lofter.com // @grant none // @license GPL-3.0-only // @description:zh 强制展开默认折叠的所有标签 // @description:en Force show all tags // @downloadURL none // ==/UserScript== (function() { 'use strict'; var css = ` .w-opt .opta { width: 100% !important } .w-opt .optb { top: 20px; } `; var style = document.createElement('style'); style.type = 'text/css'; style.appendChild(document.createTextNode(css)); document.head.appendChild(style); })();