TRPL Redirect

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

Qu'est-ce que TRPL Redirect ?

TRPL Redirect est une extension Chrome développée par srishanbhattarai, et sa fonction principale est "Redirect outdated links to The Rust Programming Language book to the right URLs".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TRPL Redirect

Téléchargez les fichiers d'extension TRPL Redirect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom TRPL Redirect TRPL Redirect
ID inapnophinbgkgahciiakfmcejejfmpa
URL Officiel https://chromewebstore.google.com/detail/trpl-redirect/inapnophinbgkgahciiakfmcejejfmpa
Description Redirect outdated links to The Rust Programming Language book to the right URLs
Taille du Fichier 184 KB
Nombre d'Installations 15
Version Actuelle 1.0.0
Dernière Mise à Jour 2019-02-04
Date de Publication 2019-02-04
Évaluation 5.00/5 Total 1 Évaluations
Développeur srishanbhattarai
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/srishanbhattarai/trpl-redirect
URL de la Page d'Aide https://github.com/srishanbhattarai/trpl-redirect/issues
Langues Prises en Charge 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"
    }
}