WeChat Nuke

Automates pasting with incrementing numbers in WeChat

  1. // ==UserScript==
  2. // @name WeChat Nuke
  3. // @namespace https://discord.gg/CcTupXFbZx
  4. // @version 1.0
  5. // @description Automates pasting with incrementing numbers in WeChat
  6. // @match *://*.wechat.com/*
  7. // @grant none
  8. // @license
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. for (let i = 1; i <= 900; i++) {
  14. setTimeout(() => {
  15. // This would need actual implementation for browser automation
  16. console.log(`Pasting item ${i}`);
  17. // Real implementation would need to simulate key presses
  18. }, 100 * i);
  19. }
  20. })();