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 |
官方網址 | 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" } } |