chanel.alex.yt / GMDmobile

// ==UserScript==
// @name        GMDmobile
// @copyright 2018, chanel.alex.yt (https://openuserjs.org/users/chanel.alex.yt)
// @license MIT
// @namespace   t
// @include     *
// @version     1
// @match        *://gamdom.com/*
// @grant       none
// ==/UserScript==

for (var i = document.styleSheets.length - 1; i >= 0; i--) {
    document.styleSheets[i].disabled = true;
}

var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'http://firstgamer.eu/css/gamdom-mobile.css';
document.getElementsByTagName("head")[0].appendChild(link);