Greasy Fork is available in English.
Change the plain text doi in WOS to hyper link, 在WOS的文章页面将DOI的文本展示改为超链接
À partir de
// ==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;
}
})();