Hallo @all...
evtl. kann mir ja jemand helfen.
Ich nutze u.a. dieses Script in Tampermonkey:
Code
// ==UserScript==
// @name Auto reload
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.firefox-forum.com/
// @match https://www.camp-firefox.de/forum/viewforum.php?f=1
// @match https://www.camp-firefox.de/forum/viewonline.php?sk=a&sd=a&sg=0
// @match https://www.camp-firefox.de/forum/viewonline.php?sk=a&sd=d&sg=0
// @match https://www.camp-firefox.de/forum/viewonline.php?sg=0&sk=a&sd=a&start=0
// @match https://www.camp-firefox.de/forum/viewonline.php?sg=0&sk=b&sd=d&start=0
// @match https://www.camp-firefox.de/forum/viewonline.php
// @include https://www.camp-firefox.de/forum/viewonline.php
// @match https://www.camp-firefox.de/forum/index.php*
// @match https://www.camp-firefox.de/forum/memberlist.php?mode=*
// @grant none
// ==/UserScript==
var timId;
if (!document.hidden) {
timId = setTimeout(function() {
location.reload();
}, 9000);
}
document.addEventListener('visibilitychange', function() {
if (document.hidden) {
clearTimeout(timId);
} else {
location.reload();
}
});
Alles anzeigen
Damit werden diverse Seiten automatisch neu geladen, was auch einwandfrei funktioniert.
Wenn ich meinen Laptop in den Standby schicke und ihn später wieder wecke, erscheint folgende Meldung:
[attachment=0]Screenshot (447).png[/attachment]
Mein Frage dazu:
Kann man das Script erweitern bzw. anpassen, dass auch diese Seite dann automatisch neu geladen wird?
Für jegliche Hilfe wie immer herzlichen Dank vorweg :klasse: