Vocaby

Vocaby

Get definitions instantly. Save words for later.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vocaby",
  "version": "1.3.1",
  "description": "Get definitions instantly. Save words for later.",
  "icons": {
    "16": "./icons/logo16.png",
    "48": "./icons/logo48.png",
    "128": "./icons/logo128.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://cdn.jsdelivr.net https://www.googleapis.com https://www.google-analytics.com/analytics.js; object-src 'self'; connect-src 'self' https://www.vocaby.app wss://*.firebaseio.com https://cdn.jsdelivr.net http://localhost:3000 http://localhost:3030 https://www.googleapis.com https://securetoken.googleapis.com;",
  "author": "Jonathan Cady, Eric Kim, Jin Son, Annie Kim",
  "manifest_version": 2
}