Direct Links

Direct Links

Skip past known redirection links and go directly to the target website. Dodge tracking and speed up browsing.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Direct Links",
  "version": "1.0",
  "description": "Skips past redirection links to go directly to the target website",
  "applications": {
    "gecko": {
      "id": "{9b5e80ff-77b2-4bec-b26b-b252b9cee755}",
      "strict_min_version": "45.0a1"
    }
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "content_security_policy": "default-src 'self'",
  "background": {
    "scripts": [
      "common.js",
      "defaults.js",
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  }
}