arxivist

arxivist reorders pages on arXiv.org based on your preferences

Qu'est-ce que arxivist ?

arxivist est une extension Chrome développée par Dan F-M, et sa fonction principale est "arxivist reorders pages on arXiv.org based on your preferences".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension arxivist

Téléchargez les fichiers d'extension arxivist au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
URL Officiel https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
Description arxivist reorders pages on arXiv.org based on your preferences
Taille du Fichier 33.33 KB
Nombre d'Installations 118
Version Actuelle 0.2.0
Dernière Mise à Jour 2021-12-03
Date de Publication 2021-12-03
Évaluation 5.00/5 Total 1 Évaluations
Développeur Dan F-M
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/dfm/arxivist
Langues Prises en Charge 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"
            ]
        }
    ]
}