Greasy Fork

ArXiv 自动展开摘要 | ArXiv automatically expands abstract

ArXiv 自动展开摘要

目前为 2024-02-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         ArXiv 自动展开摘要 | ArXiv automatically expands abstract
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  ArXiv 自动展开摘要
// @author       HuanZhi
// @match        *://arxiv.org/search/*
// @grant        none
// @license      AGPL License
// ==/UserScript==
(function() {
    var more = $("a:contains(More)");
    for(var i = 0; i < more.length; i++) {
        more[i].click();
}
})();