F**K ai-bot

就你tmd会禁用复制是吧??坐在开源大山上到处拉屎,傻逼玩意,头给你掀掉

  1. // ==UserScript==
  2. // @name F**K ai-bot
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-03-27
  5. // @description 就你tmd会禁用复制是吧??坐在开源大山上到处拉屎,傻逼玩意,头给你掀掉
  6. // @author You
  7. // @match *://ai-bot.cn/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // 定义需要删除的 CSS 规则的关键特征(检测目标选择器)
  16. const targetSelector = /body\s*\*\s*:not\(input\):not\(textarea\)/;
  17.  
  18. // 遍历页面中所有 <style> 标签
  19. Array.from(document.querySelectorAll('style')).forEach(styleElement => {
  20. if (targetSelector.test(styleElement.textContent)) {
  21. styleElement.remove();
  22. }
  23. });
  24.  
  25. })();