Remove Brainscape Blur

Automatically removes the blur overlay on Brainscape flashcards.

  1. // ==UserScript==
  2. // @name Remove Brainscape Blur
  3. // @namespace http://tampermonkey.net/
  4. // @version 2.0
  5. // @description Automatically removes the blur overlay on Brainscape flashcards.
  6. // @author EaterComputer
  7. // @match https://www.brainscape.com/flashcards/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=brainscape.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. function removeBlur() {
  17. document.querySelectorAll('.primary-ctas.flashcard-blurred-overlay').forEach(el => el.remove());
  18. document.querySelectorAll('.blurred-answer-study-cta.tertiary.primary-cta.rect-button.subscribe-link.register-link.nav-link')
  19. .forEach(el => el.remove());
  20.  
  21. }
  22.  
  23. // Run on page load
  24. removeBlur();
  25.  
  26. // Observe for dynamically added elements
  27. const observer = new MutationObserver(removeBlur);
  28. observer.observe(document.body, { childList: true, subtree: true });
  29. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址