dontShowGuide

optimize pixso.cn ui!

2022-07-07 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name         dontShowGuide
// @namespace    http://codernote.pro/
// @version      0.3
// @description  optimize pixso.cn ui!
// @author       You
// @match        https://pixso.cn/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=pixso.cn
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
     var css = [
         '.home-page--menu__right{margin-top: -30px;}',
         '.ed-file-recommended,.home-page--nav-ent{display:none!important}',
         '.project--container .ed-file-container{margin-top:-130px;}',
         '.project--container .ed-file--sortswitch-panel--wrapper{justify-content:flex-end;margin-right: 190px;margin-top: 20px;}',
         '.project--container .sortswitch-panel--slot--wrapper{flex-grow:0}',
         '.main--container .ed-file-container{margin-top:-80px;}',
         '.main--container .ed-file--sortswitch-panel--wrapper{justify-content:flex-start}',
         '.main--container .sortswitch-panel--slot--wrapper{flex-grow: 0}',
         '.ed-file-top-bar__wrap{display:flex}.ed-file-top-bar__item{width:120px;height:40px;}',

     ].join('');
     var style = document.createElement('style');
     style.type = 'text/css';
     style.innerText = css;
     document.body.previousElementSibling.appendChild(style);
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。