gf.zukizuki.org

maximale Fensterbreite auf gf.zukizuki.org nutzen

נכון ליום 06-12-2017. ראה הגרסה האחרונה.

// ==UserScript==
// @name         gf.zukizuki.org
// @namespace    http*://gf.zukizuki.org/*
// @version      0.11
// @description  maximale Fensterbreite auf gf.zukizuki.org nutzen
// @author       chillchef
// @match        http*://gf.zukizuki.org/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    try
    {
        var e = document.getElementsByClassName("width-constraint");
        e[0].style.maxWidth = "95%"; //header
        e[1].style.maxWidth = "95%"; //content
    }catch(exp){}
    try{document.getElementById("browse-script-list").style.width = "80%";}catch(exp){} //suchergebnisse;
    try{document.getElementById("user-script-list").style.width = "80%";}catch(exp){} //suchergebnisse;
    try{document.getElementById("script-list-option-groups").style.width = "17%";}catch(exp){} //sidebar;
})();