arxivist
arxivist reorders pages on arXiv.org based on your preferences
arxivist란 무엇입니까?
arxivist은(는) Dan F-M에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "arxivist reorders pages on arXiv.org based on your preferences"입니다.
확장 프로그램 스크린샷
arxivist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension reorders the listings at arXiv.org based on your browsing history. It keeps track of the papers that you have clicked on previously and it moves similar papers to the top of the list. This makes it easier to find the papers that you want to read without changing your browsing habits.
확장 프로그램 기본 정보
이름 | arxivist |
ID | fmnaemfbhjjgdokfgboolpjhnfcdaime |
공식 URL | https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime |
설명 | arxivist reorders pages on arXiv.org based on your preferences |
파일 크기 | 33.33 KB |
설치 횟수 | 118 |
현재 버전 | 0.2.0 |
최근 업데이트 | 2021-12-03 |
출시 날짜 | 2021-12-03 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Dan F-M |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dfm/arxivist |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "arxivist", "version": "0.2.0", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "description": "arxivist reorders pages on arXiv.org based on your preferences", "homepage_url": "https:\/\/github.com\/dfm\/arxivist", "permissions": [ "storage" ], "action": { "default_icon": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png" } }, "content_scripts": [ { "matches": [ "*:\/\/arxiv.org\/list\/*\/new*", "*:\/\/arxiv.org\/list\/*\/recent*", "*:\/\/arxiv.org\/list\/*\/pastweek*", "*:\/\/arxiv.org\/abs\/*" ], "js": [ "src\/stopwords.js", "src\/stemmer.js", "src\/arxivist.js" ] } ] } |