Riztard / mangadex delayed chapter auto redirect to group site

// ==UserScript==
// @name         mangadex delayed chapter auto redirect to group site
// @namespace    https://greasyfork.org/en/users/158832
// @version      0.1
// @description  try to make your life easier!
// @author       Riztard
// @match        http*://mangadex.org/chapter/*
// @license    MIT
// @grant        none
// ==/UserScript==

(function () {

  window.location.href = document.getElementsByClassName("alert-info")[0].getElementsByTagName("a")[0].getAttribute("href");
  
})();