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”。

扩展截图

screenshot

下载arxivist扩展crx文件

下载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 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"
            ]
        }
    ]
}