arxivist
arxivist reorders pages on arXiv.org based on your preferences
Что такое arxivist?
arxivist - это расширение Chrome, разработанное Dan F-M, и его основная функция - "arxivist reorders pages on arXiv.org based on your preferences".
Снимки экрана расширения
Скачать файл CRX расширения arxivist
Скачайте файлы расширений arxivist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } ] } |