Greasy Fork镜像 Code Container Spacing

Adds a small margin to the bottom of the code container in Greasy Fork镜像

当前为 2015-12-19 提交的版本,查看 最新版本

// ==UserScript==
// @name        Greasy Fork镜像 Code Container Spacing
// @namespace   chriskim06
// @description Adds a small margin to the bottom of the code container in Greasy Fork镜像
// @include     https://gf.qytechs.cn/en/scripts/*/code
// @require     http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version     1.1
// @grant       none
// @locale      en
// ==/UserScript==

this.$ = this.jQuery = jQuery.noConflict(true);

$(function() {
  if ($('#code-container').length) {
    $('#code-container').css('margin-bottom', '25px');
  }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址