[SciHub]一个SciHub的反代服务

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);
});
})();
tag(s): none
show comments · back · home
Edit with markdown

已有 2 条评论

  1. 萝卜炖鱼丸

    sci-hub反代的哪个站点啊

    萝卜炖鱼丸 September 8th, 2021 at 11:23 pm回复
    1. SaltedFish

      https://sci-hub.se/

      SaltedFish October 23rd, 2021 at 10:45 pm回复