AppendEN

AppendEN

Extension to send selected texts to Evernote

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AppendEN",
  "version": "0.1.7",
  "description": "Extension to send selected texts to Evernote",
  "browser_action": {
    "default_icon": {
      "19": "images/icon_19.png",
      "38": "images/icon_38.png"
    },
    "default_popup": "views/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js",
      "js/popup.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "options_page": "views/options.html"
}