您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
maybe useful for messing with multi-disc release
/* ==UserStyle== @name MB: make some headers sticky on edit release relationships @namespace rinsuki.net @version 1.0.0 @author rinsuki @description maybe useful for messing with multi-disc release ==/UserStyle== */ @-moz-document regexp("https?://(?:[^/]+\\.)?musicbrainz.org/release/(?:[0-9a-f-]+)/edit-relationships") { /* ここにコードを挿入... */ #batch-tools { position: sticky; top: 0; background: white; border-bottom: 1px solid #888; } #tracklist > thead { position: sticky; top: calc(1.9em + 1px); } #tracklist > tbody:has(tr.subh)::before { /* fake border */ position: absolute; background: #888; height: 1px; width: 100%; top: 0px; content: " "; } #tracklist > tbody:has(tr.subh)::after { /* fake border */ position: absolute; background: #888; height: 1px; width: 100%; bottom: 0px; content: " "; } #tracklist > tbody:has(tr.subh) { position: sticky; top: calc(1.9em + 1px + 14px + 6px + 0.4em); } }