LingvoMind

LingvoMind

Translate foreign words and phrases, submit them to your personal dictionary. Organize and learn new words using flash cards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LingvoMind",
  "version": "1.3.1",
  "manifest_version": 2,
  "description": "__MSG_application_description__",
  "icons": {
    "128": "images/128x128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "popups/background/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "http://lingvomind.com/*",
    "https://lingvomind.com/*",
    "http://localhost/*",
    "cookies",
    "notifications",
    "storage",
    "contextMenus",
    "management",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/boundary/boundary.js",
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/material-design-lite/material.min.js",
        "scripts/content/init.js",
        "scripts/content/analytics.js",
        "scripts/content/converters.js",
        "scripts/content/listeners.js",
        "scripts/content/validators.js",
        "scripts/content/handlers.js",
        "scripts/content/connections.js",
        "scripts/content/selection.js",
        "scripts/content/study-sets.js",
        "scripts/content/translation.js",
        "scripts/content/icon.js",
        "scripts/content/audio.js",
        "scripts/content/content.js"
      ],
      "css": [
        "bower_components/material-design-lite/material.min.css",
        "styles/boundary/boundary.css",
        "styles/font-awesome.css",
        "styles/content.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "128": "images/128x128.png"
    },
    "default_title": "LingvoMind",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "bower_components/material-design-lite/material.min.css",
    "styles/boundary/boundary-extra.css",
    "images/icon-38.png",
    "icon.html",
    "content.html",
    "content-iframe.html",
    "styles/*.*",
    "*.ttf",
    "*.eot",
    "*.svg",
    "*.woff",
    "*.woff2"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "http://localhost/*",
      "*://*.lingvomind.com/*"
    ],
    "accepts_tls_channel_id": false
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}