Skip Redirect

Skip Redirect

Skip intermediary pages that some pages use before redirecting to a final page.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Sebastian Blask",
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "base64.js",
      "pslrules.js",
      "psl.js",
      "url.js",
      "util.js",
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": false,
    "default_popup": "options/options.html",
    "default_title": "__MSG_browserActionLabelDefault__"
  },
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/sblask/webextension-skip-redirect",
  "icons": {
    "16": "icon-16x16.png",
    "32": "icon-32x32.png",
    "48": "icon-48x48.png",
    "64": "icon-64x64.png",
    "128": "icon-128x128.png"
  },
  "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"
}