您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the TINYpulse cheer box transparent
// ==UserScript== // @name TINYpulse transparent // @namespace http://userscripts.org/users/20715 // @description Makes the TINYpulse cheer box transparent // @include https://www.tinypulse.com/api/cheers* // @version 1.0 // ==/UserScript== GM_addStyle('body { background: none transparent; }'); GM_addStyle('#mini-header { display: none; }'); GM_addStyle('#cheers-wall { font-size: 15px; }'); GM_addStyle('#cheers-wall .recipient, #cheers-wall .praise { margin-bottom: 15px; }'); GM_addStyle('#cheers-wall .recipient img.gravatar { width: 60px; height: 60px; }'); GM_addStyle('#cheers-wall .recipient .info { margin-left: 75px; }'); GM_addStyle('#cheers-wall .recipient { line-height: 3px; }'); GM_addStyle('.container .well { background-color: rgba(255, 255, 255, 0.6) !important; }');