Greasy Fork is available in English.

Doceru Brasil (ebook|pdf|mobi|epub)

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Doceru Brasil (ebook|pdf|mobi|epub)
// @description         Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com
// @namespace    http://linkme.bio/jhonpergon/?userscript=doceru
// @version      1.1
// @author       Jhon Pérgon
// @icon       https://doceru.com/static/template2/img/favicon/fav244.png

// @name:pt         Doceru Brasil (ebook|pdf|mobi|epub)
// @name:pt-BR         Doceru Brasil (ebook|pdf|mobi|epub)
// @name:pt-PT         Doceru Brasil (ebook|pdf|mobi|epub)

// @description:pt         Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com
// @description:pt-BR         Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com
// @description:pt-PT         Download automático de ebooks (pdf, epub, mobi, etc) no site doceru.com

// @match        *://doceru.com/*
// @license      MIT
// @grant        none

// @compatible      chrome
// @compatible      firefox
// @compatible      opera
// @compatible      edge
// @compatible      safari
// @compatible      berrybrowser
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('load', function() {
      let btnDownload = document.getElementById("dwn_btn");
      if(btnDownload){
        Download.startDownload(0);
      }
    });
})();