Web of Science DOI add href

Change the plain text doi in WOS to hyper link, 在WOS的文章页面将DOI的文本展示改为超链接

目前为 2020-11-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         Web of Science DOI add href
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Change the plain text doi in WOS to hyper link, 在WOS的文章页面将DOI的文本展示改为超链接
// @author       Zhou Yucheng
// @match        https://apps.webofknowledge.com/full_record*
// @match        http://apps.webofknowledge.com/full_record*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function(){
        var v=document.querySelector('#records_form > div > div > div > div.l-column-content > div > div.block-record-info.block-record-info-source > p:nth-child(3) > value');
        var x=v.innerHTML;
        v.innerHTML="<a href='https://doi.org/"+x+"'>"+x;
    }
})();

QingJ © 2025

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