🏠 Home 

Doceru Brasil (ebook|pdf|mobi|epub)

Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com


Installer dette script?
  1. // ==UserScript==
  2. // @name Doceru Brasil (ebook|pdf|mobi|epub)
  3. // @description Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com
  4. // @namespace http://linkme.bio/jhonpergon/?userscript=doceru
  5. // @version 1.1
  6. // @author Jhon Pérgon
  7. // @icon https://doceru.com/static/template2/img/favicon/fav244.png
  8. // @name:pt Doceru Brasil (ebook|pdf|mobi|epub)
  9. // @name:pt-BR Doceru Brasil (ebook|pdf|mobi|epub)
  10. // @name:pt-PT Doceru Brasil (ebook|pdf|mobi|epub)
  11. // @description:pt Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com
  12. // @description:pt-BR Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com
  13. // @description:pt-PT Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com
  14. // @match *://doceru.com/*
  15. // @license MIT
  16. // @grant none
  17. // @compatible chrome
  18. // @compatible firefox
  19. // @compatible opera
  20. // @compatible edge
  21. // @compatible safari
  22. // @compatible berrybrowser
  23. // ==/UserScript==
  24. (function() {
  25. 'use strict';
  26. window.addEventListener('load', function() {
  27. let btnDownload = document.getElementById("dwn_btn");
  28. if(btnDownload){
  29. Download.startDownload(0);
  30. }
  31. });
  32. })();