NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Fok!Forum Beta
// @author NoXia
// @description Maak alvast gebruik van het nieuwe (beta) thema op het Fok!Forum
// @version 1.0
// @match *://forum.fok.nl/*
// @run-at document-start
// @grant none
// @license MIT
// @updateURL https://openuserjs.org/meta/NoXia/Fok!Forum_Beta.meta.js
// @downloadURL https://openuserjs.org/install/NoXia/Fok!Forum_Beta.user.js
// ==/UserScript==
var FokOud = window.location.search;
if ( ! /\?js=1$/.test (FokOud) ) {
var FokNieuw = window.location.protocol + "//"
+ window.location.host
+ window.location.pathname
+ FokOud + "?js=1"
+ window.location.hash
;
window.location.replace (FokNieuw);
}