A L Z E ~ Sayfa Boyut ayarla

Sayfanın yüksekliğini artırır ve uzaklaştırır. (Mobile)

// ==UserScript==
// @name         A L Z E ~ Sayfa Boyut ayarla
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Sayfanın yüksekliğini artırır ve  uzaklaştırır. (Mobile)
// @author       ALZE
// @license      MIT
// @match        gartic.io
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function extendPageHeight() {
        let currentHeight = document.body.scrollHeight;

        let newHeight = currentHeight * 1.9;

        document.body.style.height = newHeight + 'px';

        window.scrollTo(0, newHeight);
    }

    function zoomOutPage() {
        document.body.style.zoom = '0.7';
    }

    extendPageHeight();
    zoomOutPage();

})();