RedFlagDeals Link Fixer

RedFlagDeals Link Fixer

Broken RFD deal links? This'll (hopefully) fix that for you

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "WiL",
  "name": "RedFlagDeals Link Fixer",
  "short_name": "rfd fixer",
  "version": "1.0.1",
  "options_page": "options.html",
  "description": "Broken RFD deal links? This'll (hopefully) fix that for you",
  "icons": {
    "128": "Assets/enabledLink.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "Assets/enabledLink.png",
    "default_title": "Click to pause link fixing"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://forums.redflagdeals.com/*",
        "https://www.redflagdeals.com/*"
      ],
      "all_frames": true,
      "js": [
        "fixLinks.js"
      ],
      "run_at": "document_end"
    }
  ]
}