Words To Know

Words To Know

Shows an english words popularity to know if it's worth remembering or using

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.1.3",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon-big2.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon-big2.png",
    "48": "icon-big2.png",
    "128": "icon-big2.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "selection.js"
      ],
      "css": [
        "shared/index.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://en.oxforddictionaries.com/*"
      ],
      "js": [
        "oxforddictionaries.com/index.js",
        "shared/index.js"
      ],
      "css": [
        "oxforddictionaries.com/index.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.lingvolive.com/*"
      ],
      "js": [
        "lingvolive.com/index.js",
        "shared/index.js"
      ],
      "css": [
        "lingvolive.com/index.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "contextMenus",
    "https://toknow.io/"
  ]
}