GreasyFork: Better Webhook Info Page

9/21/2023, 3:18:06 PM

当前为 2023-09-21 提交的版本,查看 最新版本

// ==UserScript==
// @name        GreasyFork: Better Webhook Info Page
// @namespace   UserScripts
// @match       https://greasyfork.org/*
// @grant       none
// @version     0.1.0
// @author      CY Fung
// @license     MIT
// @description 9/21/2023, 3:18:06 PM
// @run-at      document-end
// ==/UserScript==

(()=>{

  if(!location.pathname.includes('/users/webhook-info')) return;

  document.head.appendChild(document.createElement('style')).textContent=`


  #main-header ~ .width-constraint > .text-content:only-child > ul li {
    font-size:0.88rem;
  }

  #main-header ~ .width-constraint > .text-content:only-child > ul a:first-child{
    display:block;
    font-size: 1rem;
    margin-top: 4px;
        text-decoration: none;
  }

  #main-header ~ .width-constraint > .text-content:only-child > ul a ~ a{
    color: #383855;
        text-decoration: none;
  }



  `

})()