Disable Mazii romaji

關掉 Mazii 的羅馬拼音

目前為 2024-03-08 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Disable Mazii romaji
// @namespace    http://mazii.net/
// @version      2024-03-08
// @description  關掉 Mazii 的羅馬拼音
// @author       LFsWang
// @match        https://mazii.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=mazii.net
// @grant        GM_addStyle
// @license      WTFPL
// ==/UserScript==

(function() {
    'use strict';
    GM_addStyle('.txt-romaji { display: none !important; }');
})();