Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name noname
- // @namespace Violentmonkey Scripts
- // @match https://shop.billa.at/
- // @grant none
- // @version 1.0
- // @author -
- // @inject-into page
- // @run-at document-start
- // @description aaa
- // ==/UserScript==
- console.log("top of script");
- console.log("about to start");
- orderId = null;
- function doThingAAA() {
- alert("loop iteration");
- }
- console.log("after function definition");
- doThingAAA();
- console.log("after running function once");
- window.setTimeout(doThingAAA, 1000);
- console.log("after setInterval");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement