Login Redirect

Login Redirect

Fixes websites bad post-login redirection functionality by redirecting you to the page you were at before taken to the login page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Login Redirect",
  "version": "1.0.0",
  "icons": {
    "16": "icons/16-enabled.png",
    "48": "icons/48-enabled.png",
    "128": "icons/128-enabled.png"
  },
  "manifest_version": 2,
  "options_page": "src/options/index.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_title": "Login Redirect",
    "default_popup": "src/options/index.html"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}