抠掉超展开

Instantly hide the rakuen link on bangumi.tv and bgm.tv.

  1. // ==UserScript==
  2. // @name 抠掉超展开
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Instantly hide the rakuen link on bangumi.tv and bgm.tv.
  6. // @match https://bangumi.tv/*
  7. // @match https://bgm.tv/*
  8. // @run-at document-start
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Redirect if the URL ends with /rakuen
  17. if (window.location.pathname === "/rakuen") {
  18. window.location.replace(window.location.origin);
  19. }
  20.  
  21. // CSS to hide the link
  22. var css = 'a.top_lite[href="/rakuen"] { display: none !important; }';
  23.  
  24. // Create a style element
  25. var style = document.createElement('style');
  26. style.type = 'text/css';
  27. style.appendChild(document.createTextNode(css));
  28.  
  29. // Inject style element as early as possible
  30. document.head.appendChild(style);
  31. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址