Evernote suppress ctrl+s/cmd+s

Evernote suppress ctrl+s/cmd+s

Prevents opening the browser save dialog when pressing ctrl+s or cmd+s at the Evernote website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Evernote suppress ctrl+s/cmd+s",
  "version": "1.1",
  "description": "Prevents opening the browser save dialog when pressing ctrl+s or cmd+s at the Evernote website.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.evernote.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}