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」です。
拡張機能のスクリーンショット
TRPL Redirect拡張機能のCRXファイルをダウンロード
TRPL Redirect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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" } } |