Greasy Fork

来自缓存

Greasy Fork is available in English.

Arxiv Full-Author

This script automatically redirects you to full author name search instead of the last name+monogram

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Arxiv Full-Author
// @name:en        Arxiv Full-Author
// @name:ja        Arxiv Full-Author
// @description:en This script automatically redirects you to full author name search instead of the last name+monogram
// @description:ja このスクリプトでは、姓+モノグラムではなく完全な著者名検索に自動的にリダイレクトされます
// @version        0.42^69cdb
// @author         ad48
// @match          *://www.arxiv.org/*
// @match          *://arxiv.org/*
// @run-at         document-start
// @namespace http://greasyfork.icu/users/184097
// @description This script automatically redirects you to full author name search instead of the last name+monogram
// ==/UserScript==
var elhref;

setInterval(function() {
  var els = document.getElementsByTagName("a");
  for(var i=0;i<els.length;i++) {
    elhref=els[i].getAttribute("href");
    if(elhref && elhref.includes("?searchtype=author")) {
      els[i].setAttribute("href","/search/?searchtype=author&query="+els[i].innerText);
    }
  }
},350);