Safer Redirects

Safer Redirects

This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Safer Redirects",
  "description": "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.",
  "version": "1.0",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}