TRPL Redirect

Redirect outdated links to The Rust Programming Language book to the right URLs

Τι είναι το TRPL Redirect;

Το TRPL Redirect είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον srishanbhattarai, και η κύρια λειτουργία του είναι "Redirect outdated links to The Rust Programming Language book to the right URLs".

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

screenshot

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

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

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

                        For a while now, links to the second edition of TRPL have shown a message saying that the link is outdated, and that you should refer to the new edition.
However, there are two problems here:
1. The (new) link that you are asked to open, just goes to the Foreword page each time, regardless of what page you were trying to view on the old book.
2. Searching for a topic in the book, example Advanced Traits, always yields the outdated URL.

This extension takes the outdated book, and tries to find out what EXACT page in the new book you should actually be on. Then, it redirects you there.

So, for example, if you were on the page for Advanced Traits on the outdated book, you would automatically be redirected to Advanced Traits on the new book.                    

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

Όνομα TRPL Redirect TRPL Redirect
ID inapnophinbgkgahciiakfmcejejfmpa
Επίσημο URL https://chromewebstore.google.com/detail/trpl-redirect/inapnophinbgkgahciiakfmcejejfmpa
Περιγραφή Redirect outdated links to The Rust Programming Language book to the right URLs
Μέγεθος Αρχείου 184 KB
Αριθμός Εγκαταστάσεων 15
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2019-02-04
Ημερομηνία Δημοσίευσης 2019-02-04
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής srishanbhattarai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/srishanbhattarai/trpl-redirect
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/srishanbhattarai/trpl-redirect/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TRPL Redirect",
    "short_name": "trpl-redirect",
    "description": "Redirect outdated links to The Rust Programming Language book to the right URLs",
    "manifest_version": 2,
    "version": "1.0.0",
    "author": "Srishan Bhattarai",
    "homepage_url": "https:\/\/github.com\/srishanbhattarai\/trpl-redirect",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/doc.rust-lang.org\/book\/second-edition\/*"
            ],
            "js": [
                ".\/build.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "128": "rust.png"
    }
}