Greasy Fork 支持简体中文。

sgmod - replace logo

Replaces the SGM logo with the old one.

  1. // ==UserScript==
  2. // @name sgmod - replace logo
  3. // @namespace woot
  4. // @version 1.0
  5. // @description Replaces the SGM logo with the old one.
  6. // @match http://www.seriousgmod.com/*
  7. // @copyright 2013+, stackoverflow
  8. // ==/UserScript==
  9.  
  10. $( document ).ready(function() {
  11. $('div[id="logo"] > div > a > img').attr({
  12. src: "http://i.imgur.com/8u2tpsu.png",
  13. style: "padding-right:20px"
  14. });
  15. $('div[id="logo"] > div').css("margin-left", "45%");
  16. });