arxivist

arxivist reorders pages on arXiv.org based on your preferences

Τι είναι το arxivist;

Το arxivist είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dan F-M, και η κύρια λειτουργία του είναι "arxivist reorders pages on arXiv.org based on your preferences".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης arxivist

Λήψη αρχείων επέκτασης arxivist σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
Επίσημο URL https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
Περιγραφή arxivist reorders pages on arXiv.org based on your preferences
Μέγεθος Αρχείου 33.33 KB
Αριθμός Εγκαταστάσεων 118
Τρέχουσα Έκδοση 0.2.0
Τελευταία Ενημέρωση 2021-12-03
Ημερομηνία Δημοσίευσης 2021-12-03
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Dan F-M
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/dfm/arxivist
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}