Greasy Fork 支持简体中文。

Unlimited Topic Question Answers

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

  1. // ==UserScript==
  2. // @name Unlimited Topic Question Answers
  3. // @namespace Violentmonkey Scripts
  4. // @match https://www.savemyexams.com/*/topic-questions/*
  5. // @grant none
  6. // @license MIT
  7. // @version 1.1
  8. // @author Hexanut
  9. // @description Removes the 10 use free limit on viewing topic question answers continuously
  10. // ==/UserScript==
  11.  
  12. setInterval(() => {
  13. localStorage.removeItem("SME.topic-question-part-solution-views");
  14. }, 1000);