dotnet-snippets.de

maximale Fensterbreite auf dotnet-snippets.de nutzen

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         dotnet-snippets.de
// @namespace    https://dotnet-snippets.de/*
// @version      0.12
// @description  maximale Fensterbreite auf dotnet-snippets.de nutzen
// @author       chillchef
// @match        http*://dotnet-snippets.de/*
// @include      http*://dotnet-snippets.de/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var w;
    w = document.getElementsByClassName("box-1 news")[0].style;
    w.visibility = "hidden";
    w.height = "0px";
    document.getElementsByClassName("container")[0].style.width = "95%";
    document.getElementsByClassName("content")[0].style.width = "75%";
    document.getElementsByClassName("menu")[0].style.width = "20%";
    document.getElementsByClassName("footer")[0].style.backgroundSize = "100%";
})();