您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a small margin to the bottom of the code container and author description in Greasy Fork
// ==UserScript== // @name Greasy Fork Container Spacing // @namespace https://github.com/chriskim06/userscripts // @description Adds a small margin to the bottom of the code container and author description in Greasy Fork // @match https://greasyfork.org/en/scripts/* // @match https://greasyfork.org/en/users/* // @version 1.2.4 // ==/UserScript== (function() { var el = document.getElementById('code-container'); if (el !== null) { el.style.marginBottom = '60px'; } el = document.getElementById('additional-info'); if (el !== null) { el.style.marginBottom = '60px'; } el = document.getElementById('user-deleted-script-list'); if (el !== null) { el.style.marginBottom = '60px'; } else { el = document.getElementById('user-script-list'); if (el !== null) { el.style.marginBottom = '60px'; } } })();