油猴列表排名

油猴列表序列号

Fra 15.04.2021. Se den seneste versjonen.

  1. // ==UserScript==
  2. // @name 油猴列表排名
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 油猴列表序列号
  6. // @author Finn
  7. // @match https://greatest.deepsurf.us/zh-CN/scripts*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. const Qe =
  14. `<style>#browse-script-list{counter-reset:section -1;}.ad-entry{height: 0;overflow: hidden;}
  15. #browse-script-list li{position:relative;box-shadow: 0 0 20px inset lavender;}
  16. #browse-script-list li:after{counter-increment: section;content:counter(section);font:bold 20px/30px Arial;color: #29b6f6;position:absolute;bottom:2px;right:10px}</style>`;
  17. document.documentElement.insertAdjacentHTML('afterbegin', Qe);
  18. })();