arxivist

arxivist reorders pages on arXiv.org based on your preferences

What is arxivist?

arxivist is a Chrome extension developed by Dan F-M, and its main feature is "arxivist reorders pages on arXiv.org based on your preferences".

Extension Screenshots

screenshot

Download arxivist Extension CRX File

Download arxivist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
Official URL https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
Description arxivist reorders pages on arXiv.org based on your preferences
File Size 33.33 KB
Installation Count 118
Current Version 0.2.0
Last Updated 2021-12-03
Publish Date 2021-12-03
Rating 5.00/5 Total 1 Ratings
Developer Dan F-M
Email [email protected]
Payment Type free
Extension Website https://github.com/dfm/arxivist
Supported Languages 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"
            ]
        }
    ]
}