Greasy Fork 还支持 简体中文。

publink-zentao-beautify

售后宝禅道样式美化

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         publink-zentao-beautify
// @namespace    http://tampermonkey.net/
// @version      0.10
// @description  售后宝禅道样式美化
// @author       huangbc
// @include      *://*
// @license      MIT
// @icon         https://www.google.com/s2/favicons?sz=64&domain=shb.ltd
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let styleElement = document.createElement('style')
    styleElement.textContent = `
    .header-btn .btn>.text { max-width: 550px !important; } 
    #globalSearchDiv { position: fixed; top: 9px; right: 250px; } 
    #globalSearchDiv .input-group { width: 260px; } 
    #searchbox .dropdown-menu.show-quick-go.with-active {top: 30px;    left: -2px;}
    #searchbox .dropdown-menu { top: 30px !important;  }
    #currentItem .text:nth-of-type(1) { display: none; }
    `
    document.body.append(styleElement)

    document.addEventListener('scroll', () => {
      try {
       const htmlElement = document.getElementsByTagName('html')[0]
       const scrollTop = htmlElement.scrollTop
       const searchElement = htmlElement.getElementById('globalSearchDiv')

       searchElement.style.display = scrollTop > 0 ? 'none' : 'block'

      } catch (error) {

      }
    })

    // Your code here...
})();