TRPL Redirect

TRPL Redirect

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

Merlin
Additional files are visible only to premium users

manifest.json


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