SciHub 是好文明!
本站反代了scihub.se
,地址为 https://scihub.saltedfish.fun/ (看看是我的IP被墙的快还是SciHub换域名快,估计两个都不长久XD,另外一部分图片被干掉了,问就是替你省流量
利用Zotero PDF retrieval
自动从SciHub抓取文献
对于有DOI的文献条目,Zotero提供了 寻找可用的PDF
项,其中搜索器可以自定义.
在 设置\首选项
->高级
中选取 设置编辑器, 并查找 extensions.zotero.findPDFs.resolvers
,默认值为 []
空数组,在数组中加入如下json:
{
"name":"Sci-Hub",
"method":"GET",
"url":"https://sci-hub.se/{doi}", #这里填写反代或任意SciHub域名均可.
"mode":"html",
"selector":"#pdf",
"attribute":"src",
"automatic":true
}
即可抓取到PDF了.注意 需要有DOI支持才可查找,可以使用zotero-shortdoi
插件抓取Long DOIs
(默认的Short DOI不支持).
Google Schoolar 添加SciHub链接
提取href加到链接上,这不是有手就行?
// ==UserScript==
// @name scihub download
// @namespace https://lx0.xyz/
// @version 0.1.2
// @description add scihub download button to google scholar
// @author @lx0
// @match https://scholar.google.com/*
// @grant none
// ==/UserScript==
(function() {
var papers = document.querySelectorAll('.gs_ri');
papers.forEach(function(item){
var paper_link = "https://sci-hub.se/" + item.querySelector('.gs_rt a').href;
var down_but = `<a target="_blank" href="${paper_link}" style= "color: blue; font-weight: bold;">download scihub</a>`;
item.querySelector('.gs_ri .gs_fl').insertAdjacentHTML('beforeend', down_but);
});
})();
sci-hub反代的哪个站点啊
https://sci-hub.se/