您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
maximale Fensterbreite auf greatest.deepsurf.us nutzen
当前为
// ==UserScript== // @name greatest.deepsurf.us // @namespace http*://greatest.deepsurf.us/* // @version 0.11 // @description maximale Fensterbreite auf greatest.deepsurf.us nutzen // @author chillchef // @match http*://greatest.deepsurf.us/* // @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; })();