Redirectify

Redirects requests for PDFs of papers at some popular sites to their corresponding HTML index pages.

Τι είναι το Redirectify;

Το Redirectify είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον imurray.dev, και η κύρια λειτουργία του είναι "Redirects requests for PDFs of papers at some popular sites to their corresponding HTML index pages.".

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

screenshot

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

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

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

                        This extension intercepts requests to PDFs of papers on arXiv and some other sites (mainly machine learning publications) and redirects the browser to the paper's parent HTML page. A request for the PDF from that HTML page will then work.

These redirections mean you can see the metadata about papers before clicking on the PDF.

The code uses a list of redirect rules. When I extend this list of sites the extension works with, you will be asked to confirm extending the permissions to new sites. For now, see the github page (Website link below) for more information.                    

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

Όνομα Redirectify Redirectify
ID mhjmbfadcbhilcfdhkkepffbnjaghfie
Επίσημο URL https://chromewebstore.google.com/detail/redirectify/mhjmbfadcbhilcfdhkkepffbnjaghfie
Περιγραφή Redirects requests for PDFs of papers at some popular sites to their corresponding HTML index pages.
Μέγεθος Αρχείου 5.38 KB
Αριθμός Εγκαταστάσεων 358
Τρέχουσα Έκδοση 0.3.2
Τελευταία Ενημέρωση 2021-03-13
Ημερομηνία Δημοσίευσης 2018-03-14
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής imurray.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/imurray/redirectify
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redirectify",
    "version": "0.3.2",
    "description": "Redirects requests for PDFs of papers at some popular sites to their corresponding HTML index pages.",
    "homepage_url": "https:\/\/github.com\/imurray\/redirectify",
    "permissions": [
        "*:\/\/*.arxiv.org\/pdf\/*",
        "*:\/\/*.inspirehep.net\/*",
        "*:\/\/xxx.lanl.gov\/*",
        "*:\/\/arxiv-export-lb.library.cornell.edu\/pdf\/*",
        "*:\/\/arxiv.org\/ftp\/*pdf",
        "*:\/\/*.openreview.net\/pdf*",
        "*:\/\/proceedings.mlr.press\/*.pdf",
        "*:\/\/*.jmlr.org\/papers\/*.pdf",
        "*:\/\/jmlr.csail.mit.edu\/papers\/*.pdf",
        "*:\/\/dl.acm.org\/doi\/pdf\/*",
        "*:\/\/*.acm.org\/*",
        "*:\/\/papers.nips.cc\/*.pdf",
        "*:\/\/papers.neurips.cc\/*.pdf",
        "*:\/\/proceedings.nips.cc\/*.pdf",
        "*:\/\/proceedings.neurips.cc\/*.pdf",
        "*:\/\/pdfs.semanticscholar.org\/*",
        "*:\/\/*.semanticscholar.org\/*",
        "*:\/\/*.biorxiv.org\/content*",
        "*:\/\/indico.cern.ch\/event\/*\/attachments\/*.pdf",
        "*:\/\/indico.fnal.gov\/event\/*\/attachments\/*.pdf",
        "*:\/\/cds.cern.ch\/record\/*\/files\/*.pdf",
        "*:\/\/www.jstor.org\/stable\/pdf\/*",
        "*:\/\/*.projecteuclid.org\/download\/pdf*",
        "*:\/\/*.projecteuclid.org\/*\/Download*",
        "*:\/\/*.projecteuclid.org\/getRecord?id=euclid.*",
        "*:\/\/www.researchgate.net\/profile\/*pdf",
        "*:\/\/citeseer.ist.psu.edu\/viewdoc\/download*type=pdf",
        "*:\/\/citeseerx.ist.psu.edu\/viewdoc\/download*type=pdf",
        "*:\/\/www.aclweb.org\/anthology\/*.pdf",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "redirectify.js"
        ]
    }
}