您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
HTML version of arxiv & AI chat for arxiv
// ==UserScript== // @name arxiv-extensions // @namespace http://tampermonkey.net/ // @version 0.2 // @description HTML version of arxiv & AI chat for arxiv // @author [email protected] // @match https://arxiv.org/abs/* // @icon https://www.google.com/s2/favicons?sz=64&domain=arxiv.org // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const createLink = function(name, url) { const link = document.createElement('a'); link.style.cssText = `display: inline-block; border-left: 2px solid #fff; padding-left: 10px; margin-left: 10px;`; link.target = '_blank'; link.href = url; link.textContent = name; return link; }; const href = window.location.href; const htmlVersionEntry = createLink('HTML(ar5iv)', href.replace('arxiv.org', 'ar5iv.org')); const htmlVersionFromVanity = createLink('HTML(vanity)', href.replace('arxiv.org', 'www.arxiv-vanity.com').replace('/pdf/', '/papers/').replace('.pdf', '/')); const aiChatEntry = createLink('AI Chat', href.replace('arxiv.org', 'arxiw.org')); const target = document.querySelector('.header-breadcrumbs'); target.appendChild(htmlVersionEntry); target.appendChild(htmlVersionFromVanity); target.appendChild(aiChatEntry); })();