Wordness – Translate & Learn Words

Wordness – Translate & Learn Words

Click or select text to translate. Save words, learn words and build vocabulary with spaced repetition support, flashcards in app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.1",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "src/js/models/word.js",
        "src/js/models/language.js",
        "src/js/models/language_preference.js",
        "src/js/utils.js",
        "src/js/content.js"
      ],
      "css": [
        "src/css/style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "page": "src/html/background.html",
    "persistent": false
  },
  "browser_action": {
    "default_popup": "src/html/popup_sign_up.html"
  },
  "icons": {
    "16": "src/icons/icon16.png",
    "48": "src/icons/icon48.png",
    "128": "src/icons/icon128.png"
  },
  "manifest_version": 2
}