TRPL Redirect

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

Wat is TRPL Redirect?

TRPL Redirect is een Chrome-extensie ontwikkeld door srishanbhattarai, en de belangrijkste functie is "Redirect outdated links to The Rust Programming Language book to the right URLs".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TRPL Redirect

Download TRPL Redirect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam TRPL Redirect TRPL Redirect
ID inapnophinbgkgahciiakfmcejejfmpa
Officiële URL https://chromewebstore.google.com/detail/trpl-redirect/inapnophinbgkgahciiakfmcejejfmpa
Beschrijving Redirect outdated links to The Rust Programming Language book to the right URLs
Bestandsgrootte 184 KB
Aantal Installaties 15
Huidige Versie 1.0.0
Laatst Bijgewerkt 2019-02-04
Publicatiedatum 2019-02-04
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar srishanbhattarai
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/srishanbhattarai/trpl-redirect
Help Pagina-URL https://github.com/srishanbhattarai/trpl-redirect/issues
Ondersteunde Talen 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"
    }
}