// ==UserScript== // @name 谷歌学术直接复制bibtex // @namespace blog.icespite.top // @version 0.2.1 // @description 在学术网站上直接复制bibtex到剪贴板,免去跳转步骤,请在设置中开启“导入BibTeX”按钮。 // @author IceSpite // @match https://scholar.google.com/scholar* // @match https://scholar.google.com.hk/scholar* // @require https://unpkg.com/jquery@3.6.0/dist/jquery.js // @connect scholar.googleusercontent.com // @grant GM_setClipboard // @grant GM_xmlhttpRequest // @run-at document-end // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var ALERT = true; $('a.gs_nta.gs_nph').each(function() { if (this.innerText.indexOf("BibTeX") !== -1) { var that = this; this.onclick = function() { GM_xmlhttpRequest({ url: that.href, onload: ({ responseText }) => { GM_setClipboard(responseText); if (ALERT) { alert('复制成功'); } } }); return false; } } }) })();