IdlePixel Database Link Remover

Stops items being turned into database etc links in chat

  1. // ==UserScript==
  2. // @name IdlePixel Database Link Remover
  3. // @namespace lbtechnology.info
  4. // @version 1.0.1
  5. // @description Stops items being turned into database etc links in chat
  6. // @author Lux-Ferre
  7. // @license MIT
  8. // @match *://idle-pixel.com/login/play*
  9. // @grant none
  10. // @require https://gf.qytechs.cn/scripts/441206-idlepixel/code/IdlePixel+.js?anticache=20220905
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. class NoLinksPlugin extends IdlePixelPlusPlugin {
  17. constructor() {
  18. super("nolinks", {
  19. about: {
  20. name: GM_info.script.name,
  21. version: GM_info.script.version,
  22. author: GM_info.script.author,
  23. description: GM_info.script.description
  24. }
  25. });
  26. this.previous = "";
  27. }
  28.  
  29. onLogin(){
  30. SearchAnythingData.create_link_for_chat = (data) => {return data}
  31. }
  32. }
  33.  
  34. const plugin = new NoLinksPlugin();
  35. IdlePixelPlus.registerPlugin(plugin);
  36. })();

QingJ © 2025

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