arxivist

arxivist reorders pages on arXiv.org based on your preferences

Was ist arxivist?

arxivist ist eine Chrome-Erweiterung, die von Dan F-M entwickelt wurde, und ihr Hauptmerkmal ist "arxivist reorders pages on arXiv.org based on your preferences".

Erweiterungsscreenshots

screenshot

arxivist-Erweiterungs-CRX-Datei herunterladen

Laden Sie arxivist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
Offizielle URL https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
Beschreibung arxivist reorders pages on arXiv.org based on your preferences
Dateigröße 33.33 KB
Installationsanzahl 118
Aktuelle Version 0.2.0
Letztes Update 2021-12-03
Veröffentlichungsdatum 2021-12-03
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Dan F-M
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dfm/arxivist
Unterstützte Sprachen 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"
            ]
        }
    ]
}