NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name The Flow Mobile Ready
// @namespace http://the-flow.ru/
// @version 0.1
// @description Заебали, адаптируйте сайт под мобилы.
// @author Dezeter
// @match http://the-flow.ru/
// @grant none
// ==/UserScript==
(function() {
viewport = document.querySelector("meta[name=viewport]");
viewport.setAttribute('content', 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0');
})();