Greasy Fork is available in English.

Bypass Paywall RespondeAi

automatically removes the RespondeAi paywall, displaying the entire contents of the book.

  1. // ==UserScript==
  2. // @name Bypass Paywall RespondeAi
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description automatically removes the RespondeAi paywall, displaying the entire contents of the book.
  6. // @author Hugobsan
  7. // @license GNU GPL v3.0. http://www.gnu.org/copyleft/gpl.html
  8. // @match https://www.respondeai.com.br/*
  9. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. function addGlobalStyle(css) {
  14. var head, style;
  15. head = document.getElementsByTagName('head')[0];
  16. if (!head) { return; }
  17. style = document.createElement('style');
  18. style.type = 'text/css';
  19. style.innerHTML = css;
  20. head.appendChild(style);
  21. }
  22.  
  23. addGlobalStyle('section { filter: blur(0px) !important; }');