Word Lens: Find Meanings with 1-click

Word Lens: Find Meanings with 1-click

Meanings at a Glance

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Word Lens: Find Meanings with 1-click",
  "description": "Meanings at a Glance",
  "version": "2.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "./popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "./images/16x16.png",
    "48": "./images/48x48.png",
    "128": "./images/128X128.png"
  }
}