Arxiv Accelerator

Accelerate to download arxiv pdf in China!

Τι είναι το Arxiv Accelerator;

Το Arxiv Accelerator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Liuchuan Yu, και η κύρια λειτουργία του είναι "Accelerate to download arxiv pdf in China!".

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

screenshot

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

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

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

                        In China, teachers, students, and researchers need to download the pdf full text on arxiv, such as https://arxiv.org/abs/1806.09755. However, it's too slow, which is just a waste of time to wait for downloading. 

This extension is to offer an alternative link on the original page for those who want to download. This link is an official website mirror in China.  Taking the mentioned URL 'https://arxiv.org/abs/1806.09755' as an example, its download link is 'https://arxiv.org/pdf/1806.09755'. This extension will add a new link below the download link, shown as 'Chinese mirror' on the HTML page whose actual link is 'http://cn.arxiv.org/pdf/1806.09755'. This is much faster in China.

Therefore, this extension is simple but much helpful.                    

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

Όνομα Arxiv Accelerator Arxiv Accelerator
ID obdigfdkjihokfllecdkcocinjfgooco
Επίσημο URL https://chromewebstore.google.com/detail/arxiv-accelerator/obdigfdkjihokfllecdkcocinjfgooco
Περιγραφή Accelerate to download arxiv pdf in China!
Μέγεθος Αρχείου 24.23 KB
Αριθμός Εγκαταστάσεων 144
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2020-04-13
Ημερομηνία Δημοσίευσης 2020-04-10
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Liuchuan Yu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Arxiv Accelerator",
    "short_name": "A-Accelerator",
    "version": "1.2.2",
    "description": "Accelerate to download arxiv pdf in China!",
    "manifest_version": 2,
    "icons": {
        "16": "16x16.png",
        "32": "32x32.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "*:\/\/arxiv.org\/*",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/arxiv.org\/abs\/*",
                "*:\/\/arxiv.org\/pdf\/*"
            ],
            "js": [
                "arxivaccelerator.js"
            ]
        }
    ]
}