Redirect Bypasser (WebExtension)

Redirect Bypasser (WebExtension)

Avoid redirects and has direct access to the sites you want to visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Redirect Bypasser",
  "version": "2.1.5resigned1",
  "manifest_version": 2,
  "homepage_url": "http://moisesplima.blogspot.com.br/redirect-bypasser",
  "default_locale": "en",
  "description": "__MSG_extShortDesc__",
  "developer": {
    "name": "Moises Lima",
    "url": "http://moisesplima.blogspot.com.br"
  },
  "icons": {
    "16": "images/rb-icon16.png",
    "48": "images/rb-icon48.png",
    "64": "images/rb-icon64.png",
    "128": "images/rb-icon128.png"
  },
  "background": {
    "scripts": [
      "background-common.js",
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-scripts/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*",
    "notifications"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "applications": {
    "gecko": {
      "id": "Redirectbypasser2@WebExtension",
      "strict_min_version": "57.0"
    }
  }
}