Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Autorefresh GuteFrage
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match https://www.gutefrage.net/fragen/neue/1
- // @icon https://www.google.com/s2/favicons?domain=gutefrage.net
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- //I'd use this, but it's just going to trigger a full refresh anyways
- //const clickNeue = () => Array.from(document.getElementsByClassName("Tabs-tab--button Tabs-tab")).find((e) => e.textContent === "Neue").getElementsByTagName("A")[0].click();
- setInterval(() => location.reload(), 15000)
- })();
Add Comment
Please, Sign In to add comment