Greasy Fork is available in English.

Unlimited Topic Question Answers

Removes the 10 use free limit on viewing topic question answers continuously

// ==UserScript==
// @name        Unlimited Topic Question Answers
// @namespace   Violentmonkey Scripts
// @match       https://www.savemyexams.com/*/topic-questions/*
// @grant       none
// @license     MIT
// @version     1.1
// @author      Hexanut
// @description Removes the 10 use free limit on viewing topic question answers continuously
// ==/UserScript==

setInterval(() => {
  localStorage.removeItem("SME.topic-question-part-solution-views");
}, 1000);