您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces the SGM logo with the old one.
当前为
- // ==UserScript==
- // @name sgmod - replace logo
- // @namespace woot
- // @version 1.0
- // @description Replaces the SGM logo with the old one.
- // @match http://www.seriousgmod.com/*
- // @copyright 2013+, stackoverflow
- // ==/UserScript==
- $( document ).ready(function() {
- $('div[id="logo"] > div > a > img').attr({
- src: "http://i.imgur.com/8u2tpsu.png",
- style: "padding-right:20px"
- });
- $('div[id="logo"] > div').css("margin-left", "45%");
- });