English Dictionary

English Dictionary

On any web page, just double-click on the word and see the meaning of it!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "English Dictionary",
  "description": "On any web page, just double-click on the word and see the meaning of it!",
  "version": "1.0.0.1",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "dictionary_icon.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}