您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
tmodifyphotos
// ==UserScript== // @name modifyphotos // @namespace http://tampermonkey.net/ // @version 0.3 // @description tmodifyphotos // @author You // @match http://47.107.106.156/* // @match http://122.13.25.247/* // @icon https://www.google.com/s2/favicons?sz=64&domain=106.156 // @grant GM_addStyle // @license MIT // ==/UserScript== (function() { 'use strict'; let weburl = unsafeWindow.location.href; if (weburl.indexOf("47.107.106.156") != -1) { GM_addStyle('.main{background:url(http://47.107.106.156:8888/image/default2/logo/login_bg2.png) bottom no-repeat; margin: auto;background-size:100% 100% !important}'); GM_addStyle('.main-logo{display: inline-block;background:url(http://47.107.106.156:8888/image/default2/logo/header2.png)no-repeat; height: 60px;width: 100% !important}'); GM_addStyle('.main-mbg{background:url(http://47.107.106.156:8888/image/default2/logo/mbg2.jpg);background-size:100% 100% !important}'); } if (weburl.indexOf("122.13.25.247") != -1) { GM_addStyle('.main{background:url(http://122.13.25.247:8888/image/default2/logo/login_bg2.png) bottom no-repeat; margin: auto;background-size:100% 100% !important}'); GM_addStyle('.main-mbg{background:url(http://122.13.25.247:8888/image/default2/logo/mbg2.jpg);background-size:100% 100% !important}'); GM_addStyle('.main-logo{display: inline-block;background:url(http://122.13.25.247:8888/image/default2/logo/header2.png)no-repeat; height: 60px;width: 100% !important}'); } })();