您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
LoL Pickems Better Style Script
当前为
- // ==UserScript==
- // @name LoL Pickems Style Script
- // @namespace http://tampermonkey.net/
- // @version 0.2
- // @description LoL Pickems Better Style Script
- // @author Arwinus
- // @match http://*/*
- // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
- // @grant none
- // @include *pickem.lolesports.com/pickem/worlds*
- // ==/UserScript==
- (function() {
- 'use strict';
- function addGlobalStyle(css) {
- var head, style;
- head = document.getElementsByTagName('head')[0];
- if (!head) { return; }
- style = document.createElement('style');
- style.type = 'text/css';
- style.innerHTML = css;
- head.appendChild(style);
- }
- addGlobalStyle('._3bd38 > div:not(._76f07) { width:25%; float:left; }');
- addGlobalStyle('.ed0da {span 1 !important;}');
- addGlobalStyle('._608dd {margin-left:16px !important;margin-right:16px !important;}');
- addGlobalStyle('._34e74 {span 15 !important;}');
- addGlobalStyle('.d7f9e {margin-left:16px !important;}');
- addGlobalStyle('.d7f9e ._54dbc {width:200px !important;}');
- addGlobalStyle('.d7f9e .ee016 .fe4a8 {margin:0 16px;}');
- addGlobalStyle('.d2e66 {display:none !important;}');
- })();