Greasy Fork 支持简体中文。

AnkiWeb hide Hard & Easy answer buttons

Literally never used these..

// ==UserScript==
// @name         AnkiWeb hide Hard & Easy answer buttons
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Literally never used these..
// @author       ithelor
// @match        https://ankiuser.net/study
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    new MutationObserver((mutationsList) => mutationsList.forEach(({ type }) => {
        if (type === "childList") {
            const answerButtons = document.getElementById('ansarea').children.item(0).children;

            if (answerButtons.length < 4) {
                return
            }

            const hardButton = answerButtons.item(1);
            const easyButton = answerButtons.item(3);

            hardButton.remove();
            easyButton.remove();
        }
    })).observe(document.body, {
        childList: true,
        subtree: true,
    });
})();