您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make the GO Playgroung appears vertically
// ==UserScript== // @name Vertical GoPlayground // @version 1.1 // @description Make the GO Playgroung appears vertically // @copyright Brahim Hamdouni (c) 2017 // @author Brahim Hamdouni (@hamdouni) // @License http://creativecommons.org/licenses/by-nc-sa/3.0/ // @match https://play.golang.org/ // @namespace https://greasyfork.org/users/136286 // ==/UserScript== (function() { 'use strict'; var wrap = document.getElementById("wrap"); var output = document.getElementById("output"); wrap.style.width = "50%"; wrap.style.bottom = "0"; wrap.style.padding = 0; wrap.style.margin = 0; wrap.style.border = 0; output.style.width = "50%"; output.style.top = "50px"; output.style.left = "50%"; output.style.padding = 0; output.style.margin = 0; output.style.border = 0; })();