CliffsNotes Bypass

CliffsNotes Tutor Problems Bypass

  1. // ==UserScript==
  2. // @name CliffsNotes Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description CliffsNotes Tutor Problems Bypass
  6. // @author You
  7. // @match https://www.cliffsnotes.com/tutors-problems/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=cliffsnotes.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. const answer_text = document.getElementsByClassName('answer-text')[0];
  16. const explanation_text = document.getElementsByClassName('explanation-text')[0];
  17. var observer = new MutationObserver(function(mutations) {
  18. mutations.forEach(function(mutationRecord) {
  19. mutationRecord.target.style.filter = 'none';
  20. });
  21. });
  22.  
  23. observer.observe(answer_text, {
  24. attributes: true,
  25. attributeFilter: ['style']
  26. });
  27. observer.observe(explanation_text, {
  28. attributes: true,
  29. attributeFilter: ['style']
  30. });
  31. })();

QingJ © 2025

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