您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Show paper comments on the pdf preview page.
// ==UserScript== // @name arxiv comment // @namespace http://tampermonkey.net/ // @version 0.1 // @description Show paper comments on the pdf preview page. // @author You // @match https://arxiv.org/pdf/* // @icon https://www.google.com/s2/favicons?sz=64&domain=arxiv.com // @grant unsafeWindow // @require https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js // @license MIT // ==/UserScript== (function() { 'use strict'; var xx = ''; $.get(window.location.href.replace('/pdf', '/abs'), function(data){ xx = $('.comments', data).last().text().replace('Title:', ''); console.log(xx); if (xx !== undefined && xx !== ''){ $("body").append(`<div style='left: 50px;top: 10px;background: #1a59b7;color:#ffffff;z-index: 9999;position: fixed;padding:5px;text-align:center;width: 300px;height: 22px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;border-top-left-radius: 4px;border-top-right-radius: 4px;'>${xx}</div>`); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址