Redirectify
Redirects requests for PDFs of papers at some popular sites to their corresponding HTML index pages.
Redirectify란 무엇입니까?
Redirectify은(는) imurray.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects requests for PDFs of papers at some popular sites to their corresponding HTML index pages."입니다.
확장 프로그램 스크린샷
Redirectify 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension intercepts requests to PDFs of papers on arXiv and some other sites (mainly machine learning publications) and redirects the browser to the paper's parent HTML page. A request for the PDF from that HTML page will then work. These redirections mean you can see the metadata about papers before clicking on the PDF. The code uses a list of redirect rules. When I extend this list of sites the extension works with, you will be asked to confirm extending the permissions to new sites. For now, see the github page (Website link below) for more information.
확장 프로그램 기본 정보
이름 | Redirectify |
ID | mhjmbfadcbhilcfdhkkepffbnjaghfie |
공식 URL | https://chromewebstore.google.com/detail/redirectify/mhjmbfadcbhilcfdhkkepffbnjaghfie |
설명 | Redirects requests for PDFs of papers at some popular sites to their corresponding HTML index pages. |
파일 크기 | 5.38 KB |
설치 횟수 | 358 |
현재 버전 | 0.3.2 |
최근 업데이트 | 2021-03-13 |
출시 날짜 | 2018-03-14 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | imurray.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/imurray/redirectify |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Redirectify", "version": "0.3.2", "description": "Redirects requests for PDFs of papers at some popular sites to their corresponding HTML index pages.", "homepage_url": "https:\/\/github.com\/imurray\/redirectify", "permissions": [ "*:\/\/*.arxiv.org\/pdf\/*", "*:\/\/*.inspirehep.net\/*", "*:\/\/xxx.lanl.gov\/*", "*:\/\/arxiv-export-lb.library.cornell.edu\/pdf\/*", "*:\/\/arxiv.org\/ftp\/*pdf", "*:\/\/*.openreview.net\/pdf*", "*:\/\/proceedings.mlr.press\/*.pdf", "*:\/\/*.jmlr.org\/papers\/*.pdf", "*:\/\/jmlr.csail.mit.edu\/papers\/*.pdf", "*:\/\/dl.acm.org\/doi\/pdf\/*", "*:\/\/*.acm.org\/*", "*:\/\/papers.nips.cc\/*.pdf", "*:\/\/papers.neurips.cc\/*.pdf", "*:\/\/proceedings.nips.cc\/*.pdf", "*:\/\/proceedings.neurips.cc\/*.pdf", "*:\/\/pdfs.semanticscholar.org\/*", "*:\/\/*.semanticscholar.org\/*", "*:\/\/*.biorxiv.org\/content*", "*:\/\/indico.cern.ch\/event\/*\/attachments\/*.pdf", "*:\/\/indico.fnal.gov\/event\/*\/attachments\/*.pdf", "*:\/\/cds.cern.ch\/record\/*\/files\/*.pdf", "*:\/\/www.jstor.org\/stable\/pdf\/*", "*:\/\/*.projecteuclid.org\/download\/pdf*", "*:\/\/*.projecteuclid.org\/*\/Download*", "*:\/\/*.projecteuclid.org\/getRecord?id=euclid.*", "*:\/\/www.researchgate.net\/profile\/*pdf", "*:\/\/citeseer.ist.psu.edu\/viewdoc\/download*type=pdf", "*:\/\/citeseerx.ist.psu.edu\/viewdoc\/download*type=pdf", "*:\/\/www.aclweb.org\/anthology\/*.pdf", "webRequest", "webRequestBlocking" ], "background": { "scripts": [ "redirectify.js" ] } } |