Numerade Blur Unlocker

Unlock some of the blurred content on numerade

目前为 2023-11-19 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Numerade Blur Unlocker
  3. // @version 1.0
  4. // @description Unlock some of the blurred content on numerade
  5. // @original author nightshade
  6. // @match *://*numerade.com/*
  7. // @include *://*numerade.com/*
  8. // @grant none
  9. // @original namespace https://greasyfork.org/users/824640
  10. // @Modified by @Abyss_Seeker!
  11. // @author Abyss_Seeker!
  12. // @license MIT
  13. // @namespace https://greasyfork.org/users/1220066
  14. // ==/UserScript==
  15.  
  16. // Remove elements with class "ai-blur-box"
  17. $(".ai-blur-box").remove();
  18.  
  19. // Remove class "ai-blur-text" from all elements
  20. $("[class*='ai-blur-text']").removeClass("ai-blur-text");