arxivist

arxivist reorders pages on arXiv.org based on your preferences

Cos'è arxivist?

arxivist è un'estensione di Chrome sviluppata da Dan F-M, e la sua funzione principale è "arxivist reorders pages on arXiv.org based on your preferences".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione arxivist

Scarica i file di estensione arxivist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
URL Ufficiale https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
Descrizione arxivist reorders pages on arXiv.org based on your preferences
Dimensione del File 33.33 KB
Conteggio Installazioni 118
Versione Corrente 0.2.0
Ultimo Aggiornamento 2021-12-03
Data di Pubblicazione 2021-12-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Dan F-M
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dfm/arxivist
Lingue Supportate 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"
            ]
        }
    ]
}