Responde Aí - Livros

Script para ver o conteudo pago do Responde Aí!

目前为 2020-04-05 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Responde Aí - Livros
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Script para ver o conteudo pago do Responde Aí!
  6. // @author Lucasark
  7. // @match https://www.respondeai.com.br/materias/solucionario/livro/1/edicao/18/*
  8. // @match https://www.respondeai.com.br/materias/solucionario/livro/1/edicao/18/exercicio/*
  9. // @match https://www.respondeai.com.br/praticar/218/lista/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. function addGlobalStyle(css) {
  17. var head, style;
  18. head = document.getElementsByTagName('head')[0];
  19. if (!head) { return; }
  20. style = document.createElement('style');
  21. style.type = 'text/css';
  22. style.innerHTML = css;
  23. head.appendChild(style);
  24. };
  25.  
  26. addGlobalStyle('.blur{-webkit-filter:blur(0px);filter:blur(0px);pointer-events:all}');
  27. addGlobalStyle('.overlay{visibility: hidden}login-disclaimer{visibility: hidden}');
  28. addGlobalStyle('login-disclaimer{visibility: hidden}');
  29. })();