Greasy Fork

Greasy Fork is available in English.

Web of Science GoTo Publisher

Automatically redirect to publisher website for full text when you click on the title in the Web of Science search result list

目前为 2020-06-21 提交的版本。查看 最新版本

// ==UserScript==
// @name        Web of Science GoTo Publisher
// @version     0.1.1
// @author      sincostandx
// @description Automatically redirect to publisher website for full text when you click on the title in the Web of Science search result list
// @namespace   http://greasyfork.icu/users/171198
// @include     https://apps.webofknowledge.com/full_record*
// @include     http://apps.webofknowledge.com/full_record*
// ==/UserScript==

const fields = document.getElementsByClassName('FR_field');
for (let i = 0; i < fields.length; ++i){
  const l = fields[i].getElementsByClassName('FR_label');
  if (l.length > 0 && l[0].innerHTML === 'DOI:'){
    const doi = fields[i].getElementsByTagName('value')[0].innerHTML;
    window.location.replace('https://doi.org/' + doi);
    break;
  }
}