Adds a small margin to the bottom of the code container and author description in Greasy Fork镜像
当前为
// ==UserScript==
// @name Greasy Fork镜像 Container Spacing
// @namespace chriskim06
// @description Adds a small margin to the bottom of the code container and author description in Greasy Fork镜像
// @include https://gf.qytechs.cn/en/scripts/*/code
// @include https://gf.qytechs.cn/en/scripts/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version 1.2.1
// @grant none
// @locale en
// ==/UserScript==
this.$ = this.jQuery = jQuery.noConflict(true);
$(function() {
if ($('#code-container').length) {
$('#code-container').css('margin-bottom', '40px');
}
if ($('#additional-info').length) {
$('#additional-info').css('margin-bottom', '40px');
}
if ($('#user-script-list').length) {
$('#user-script-list').css('margin-bottom', '40px');
}
});
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址