Advertisement
Guest User

Untitled

a guest
May 21st, 2023
40
0
13 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // ==UserScript==
  2. // @name noname
  3. // @namespace Violentmonkey Scripts
  4. // @match https://shop.billa.at/
  5. // @grant none
  6. // @version 1.0
  7. // @author -
  8. // @inject-into page
  9. // @run-at document-start
  10. // @description aaa
  11. // ==/UserScript==
  12.  
  13. console.log("top of script");
  14.  
  15.  
  16. console.log("about to start");
  17.  
  18. orderId = null;
  19. function doThingAAA() {
  20. alert("loop iteration");
  21. }
  22.  
  23. console.log("after function definition");
  24.  
  25. doThingAAA();
  26. console.log("after running function once");
  27.  
  28. window.setTimeout(doThingAAA, 1000);
  29.  
  30. console.log("after setInterval");
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement