arxivist

arxivist reorders pages on arXiv.org based on your preferences

Co je arxivist?

arxivist je rozšíření Chrome vyvinuté Dan F-M, a jeho hlavní funkcí je „arxivist reorders pages on arXiv.org based on your preferences“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření arxivist

Stáhněte si soubory rozšíření arxivist ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
Oficiální URL https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
Popis arxivist reorders pages on arXiv.org based on your preferences
Velikost souboru 33.33 KB
Počet instalací 118
Aktuální Verze 0.2.0
Poslední Aktualizace 2021-12-03
Datum Vydání 2021-12-03
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Dan F-M
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/dfm/arxivist
Podporované Jazyky 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"
            ]
        }
    ]
}