Replace the label on the quote button
当前为
// ==UserScript==
// @name MeFi replace quote label
// @namespace https://github.com/klipspringr/mefi-scripts
// @version 2025-03-28-b
// @description Replace the label on the quote button
// @author Klipspringer
// @match *://*.metafilter.com/*
// @grant none
// @license MIT
// ==/UserScript==
(async () => {
if (!/^\/(\d|comments\.mefi)/.test(window.location.pathname)) return;
const to = "↩ ";
document
.querySelectorAll('a[class="quotebutton"]')
.forEach((node) => (node.textContent = to));
})();