TRPL Redirect

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

TRPL Redirect란 무엇입니까?

TRPL Redirect은(는) srishanbhattarai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirect outdated links to The Rust Programming Language book to the right URLs"입니다.

확장 프로그램 스크린샷

screenshot

TRPL Redirect 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}