TRPL Redirect

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

TRPL Redirect क्या है?

TRPL Redirect srishanbhattarai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirect outdated links to The Rust Programming Language book to the right URLs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TRPL Redirect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}