Lingviny for Gmail

Lingviny for Gmail

Professional Human Translations in your Gmail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "1.0.4",
  "minimum_chrome_version": "36",
  "default_locale": "en",
  "icons": {
    "16": "16x16.png",
    "32": "32x32.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "browser_action": {
    "default_icon": "48x48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "https://lingviny.com/"
  ],
  "web_accessible_resources": [
    "48x48.png"
  ],
  "content_scripts": [
    {
      "css": [
        "anylanguage.css"
      ],
      "js": [
        "jquery-2.2.2.min.js",
        "inboxsdk.js",
        "loader.js"
      ],
      "matches": [
        "http://mail.google.com/*",
        "https://mail.google.com/*",
        "http://inbox.google.com/*",
        "https://inbox.google.com/*"
      ],
      "run_at": "document_start"
    }
  ]
}