Удаление темы

Удаляет тему на Ctrl+X

  1. // ==UserScript==
  2. // @name Удаление темы
  3. // @namespace https://zelenka.guru/
  4. // @version 1.0
  5. // @description Удаляет тему на Ctrl+X
  6. // @author Mayni1337
  7. // @match https://zelenka.guru/threads/*
  8. // @grant none
  9. // @license none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. document.addEventListener('keydown', function(event) {
  16. if (event.key === 'x' && event.ctrlKey) {
  17. var deleteButton = document.querySelector('.OverlayTrigger[href$="/delete"]');
  18. if (deleteButton) {
  19. deleteButton.click();
  20. setTimeout(function() {
  21. var confirmButton = document.querySelector('input[value="Удалить тему"]');
  22. if (confirmButton) {
  23. confirmButton.click();
  24. }
  25. }, 1000);
  26. }
  27. }
  28. });
  29. })();

QingJ © 2025

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