arXiv Vanity
Add an arXiv Vanity link to arXiv abstract pages.
arXiv Vanity란 무엇입니까?
arXiv Vanity은(는) arXiv Vanity에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add an arXiv Vanity link to arXiv abstract pages."입니다.
확장 프로그램 스크린샷
arXiv Vanity 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
arXiv Vanity renders academic papers from arXiv.org as responsive web pages so you don't have to squint at a PDF: https://www.arxiv-vanity.com/ This extension adds arXiv Vanity links to arXiv abstract pages. You can also click the extension icon to take you to the arXiv Vanity page when viewing an arXiv PDF. Contribute on GitHub: https://github.com/arxiv-vanity/arxiv-vanity-chrome-extension
확장 프로그램 기본 정보
이름 | arXiv Vanity |
ID | jfnlkegibnoaagfdabjkchhocdhnoofk |
공식 URL | https://chromewebstore.google.com/detail/arxiv-vanity/jfnlkegibnoaagfdabjkchhocdhnoofk |
설명 | Add an arXiv Vanity link to arXiv abstract pages. |
파일 크기 | 26.17 KB |
설치 횟수 | 3,606 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2021-12-28 |
출시 날짜 | 2017-10-24 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | arXiv Vanity |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.arxiv-vanity.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "arXiv Vanity", "description": "Add an arXiv Vanity link to arXiv abstract pages.", "version": "1.2.0", "icons": { "128": "logo.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "logo.png" }, "permissions": [ "activeTab", "*:\/\/*.arxiv.org\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.arxiv.org\/abs\/*" ], "js": [ "arxivvanitymod.js" ] } ] } |