您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script automatically redirects you to full author name search instead of the last name+monogram
// ==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 https://greasyfork.org/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);