Disable You are leaving Evernote

Disable You are leaving Evernote

Simple Chrome extension that skips the annoying message 'You are leaving Evernote' and made auto-redirect to website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Disable You are leaving Evernote",
  "description": "Simple Chrome extension that skips the annoying message 'You are leaving Evernote' and made auto-redirect to website",
  "version": "1.0.1",
  "author": "Oleg Demkiv",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://www.evernote.com/OutboundRedirect.action*"
      ]
    }
  ]
}