arxivist
arxivist reorders pages on arXiv.org based on your preferences
O que é arxivist?
arxivist é uma extensão do Chrome desenvolvida por Dan F-M, e sua principal característica é "arxivist reorders pages on arXiv.org based on your preferences".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão arxivist
Baixe arquivos de extensão arxivist no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | arxivist |
ID | fmnaemfbhjjgdokfgboolpjhnfcdaime |
URL Oficial | https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime |
Descrição | arxivist reorders pages on arXiv.org based on your preferences |
Tamanho do Arquivo | 33.33 KB |
Contagem de Instalações | 118 |
Versão Atual | 0.2.0 |
Última Atualização | 2021-12-03 |
Data de Publicação | 2021-12-03 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Dan F-M |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/dfm/arxivist |
Idiomas Suportados | 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" ] } ] } |