NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace http://openuserjs.org/users/begfahrenheit // @name Vipergirls Force Desktop Mode // @version 0.0.1 // @author begfahrenheit // @license MIT // @copyright 2020, begfahrenheit (https://openuserjs.org/users/begfahrenheit) // @match https://vipergirls.to/* // @grant none // ==/UserScript== // ==OpenUserJS== // @author begfahrenheit // ==/OpenUserJS== (function() { 'use strict'; var kvp = document.location.search.substr(1).split('&'); for(let i=0; i<kvp.length; i++) { if (kvp[i].startsWith('styleid') && kvp[i] != 'styleid=64') { kvp[i] = 'styleid=64'; let params = kvp.join('&'); document.location.search = params; } } })();