Wabely

Wabely

This extension suggests translations for words written in english or german when typing an email.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2013.12.14.1",
  "name": "Wabely",
  "description": "This extension suggests translations for words written in english or german when typing an email.",
  "icons": {
    "16": "logo_16.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "jquery-2.0.2.min.map",
    "loading.gif"
  ],
  "permissions": [
    "tabs",
    "http://api.genusly.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.mail.google.com/*",
        "https://*.mail.google.com/*",
        "http://*.mail.yahoo.com/*",
        "https://*.mail.yahoo.com/*",
        "http://*.mail.live.com/*",
        "https://*.mail.live.com/*",
        "http://*.facebook.com/*",
        "https://*.facebook.com/*"
      ],
      "js": [
        "jquery-2.0.2.min.js",
        "content.js",
        "translation.js",
        "backgroundLayer.js",
        "language.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}