emerald-dl

Emerald article viewer/dowloader

// ==UserScript==
// @name         emerald-dl
// @namespace    [email protected]
// @version      0.1
// @description  Emerald article viewer/dowloader
// @author       Ogun
// @match        https://www.emerald.com/insight/content/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const url = window.location.href;
    var patt = /\d.+/;
    const doi = url.match(patt);
    const auth = document.getElementsByClassName("intent_explore")[0];
    auth.dataset.target = "#";
    auth.setAttribute('data-toggl', '#');
    auth.innerHTML='DOWNLOAD';
    auth.href="https://sci-hub.tw/" +doi;
    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址