TRPL Redirect
Redirect outdated links to The Rust Programming Language book to the right URLs
Was ist TRPL Redirect?
TRPL Redirect ist eine Chrome-Erweiterung, die von srishanbhattarai entwickelt wurde, und ihr Hauptmerkmal ist "Redirect outdated links to The Rust Programming Language book to the right URLs".
Erweiterungsscreenshots
TRPL Redirect-Erweiterungs-CRX-Datei herunterladen
Laden Sie TRPL Redirect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | inapnophinbgkgahciiakfmcejejfmpa |
Offizielle URL | https://chromewebstore.google.com/detail/trpl-redirect/inapnophinbgkgahciiakfmcejejfmpa |
Beschreibung | Redirect outdated links to The Rust Programming Language book to the right URLs |
Dateigröße | 184 KB |
Installationsanzahl | 15 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2019-02-04 |
Veröffentlichungsdatum | 2019-02-04 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | srishanbhattarai |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/srishanbhattarai/trpl-redirect |
Hilfeseite URL | https://github.com/srishanbhattarai/trpl-redirect/issues |
Unterstützte Sprachen | 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" } } |