您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
optimize pixso.cn UI!
// ==UserScript== // @name dontShowPixsoGuide // @namespace https://codernotes.club/ // @version 0.76 // @description optimize pixso.cn UI! // @author [email protected] // @match pixso.cn/* // @icon https://www.google.com/s2/favicons?sz=64&domain=pixso.cn // @grant none // @run-at document-body // ==/UserScript== (function() { 'use strict'; var css = [ '/*.ed-file-container .ed-file-top-bar{position:fixed;top:5px;width:calc(100% - 400px)}*/', '.ed-file-container .ed-file-top-bar .ed-file-top-bar__wrap{grid-template-columns: repeat(auto-fill,minmax(180px,1fr));}', '.main--container .main-contain-top_draft{padding:29px 32px 18px 32px;}', '.ed-file-container .ed-file-top-bar .ed-file-top-bar__item-wrapper{width:215px}', ].join(''); var style = document.createElement('style'); style.innerText = css; document.body.previousElementSibling.appendChild(style); })();