Easy Pen: Auto suggestions and auto complete

Easy Pen: Auto suggestions and auto complete

Get auto suggestions in English or Spanish in Evernote or Dropbox Paper.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Easy Pen: Auto suggestions and auto complete",
  "description": "Get auto suggestions in English or Spanish in Evernote or Dropbox Paper.",
  "version": "0.0.1",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_title": "Easy Pen: Type and get auto suggestions on Evernote or Dropbox Paper",
    "default_popup": "src/popup.html"
  },
  "background": {
    "scripts": [
      "src/jquery-2.1.1.min.js",
      "src/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://paper.dropbox.com/*",
        "https://www.evernote.com/*"
      ],
      "js": [
        "src/jquery-2.1.1.min.js",
        "src/content.js",
        "src/caret.js",
        "src/b.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "en-UK.json",
    "en-US.json",
    "es-ES.json"
  ]
}