arxivist

arxivist reorders pages on arXiv.org based on your preferences

Wat is arxivist?

arxivist is een Chrome-extensie ontwikkeld door Dan F-M, en de belangrijkste functie is "arxivist reorders pages on arXiv.org based on your preferences".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie arxivist

Download arxivist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
Officiële URL https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
Beschrijving arxivist reorders pages on arXiv.org based on your preferences
Bestandsgrootte 33.33 KB
Aantal Installaties 118
Huidige Versie 0.2.0
Laatst Bijgewerkt 2021-12-03
Publicatiedatum 2021-12-03
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Dan F-M
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/dfm/arxivist
Ondersteunde Talen 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"
            ]
        }
    ]
}