Evercuts

Evercuts

Keyboard shortcuts for the new Evernote UI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Evercuts",
  "version": "1.13",
  "description": "Keyboard shortcuts for the new Evernote UI",
  "permissions": [
    "activeTab",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "content_scripts/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "images/evers16.png",
      "32": "images/evers32.png",
      "48": "images/evers48.png",
      "128": "images/evers128.png"
    }
  },
  "icons": {
    "16": "images/evers16.png",
    "32": "images/evers32.png",
    "48": "images/evers48.png",
    "128": "images/evers128.png"
  },
  "commands": {
    "search": {
      "suggested_key": {
        "default": "Alt+Q"
      },
      "description": "Search notes"
    },
    "fullscreen": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "Toggle fullscreen"
    },
    "deletenote": {
      "suggested_key": {
        "default": "Alt+Delete"
      },
      "description": "Delete current note"
    },
    "movenote": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "Move note to new notebook"
    },
    "opennote": {
      "description": "Full screen current note in a new tab"
    },
    "copyinternallink": {
      "description": "Copy current notes internal web link"
    },
    "copyinternalapplink": {
      "description": "Copy current notes internal app link"
    },
    "insertMenu": {
      "description": "Opens the insert menu"
    },
    "editTags": {
      "description": "Edit the current notes tags"
    },
    "_execute_page_action": {
      "description": "Show shorcuts and options"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.evernote.com/*"
      ],
      "js": [
        "content_scripts/contentScript.js"
      ]
    }
  ],
  "manifest_version": 2
}