Skip Redirect

Skip Redirect

Some web pages use intermediary pages before redirecting to a final page. This add-on tries to extract the final url from the intermediary url and goes there straight away if successful.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "skipredirect@sblask",
      "strict_min_version": "57.0"
    }
  },
  "author": "Sebastian Blask",
  "background": {
    "scripts": [
      "base64.js",
      "pslrules.js",
      "psl.js",
      "url.js",
      "util.js",
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": "icon.svg",
    "default_popup": "options/options.html",
    "default_title": "__MSG_browserActionLabelDefault__"
  },
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/sblask/webextension-skip-redirect",
  "icons": {
    "48": "icon.svg"
  },
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "<all_urls>",
    "clipboardWrite",
    "contextMenus",
    "notifications",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "default_locale": "en",
  "version": "2.3.6"
}