Click dictionary

Click dictionary

Double click on words to see their definition

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "newDev",
  "manifest_version": 3,
  "name": "Click dictionary",
  "short_name": "Click dict.",
  "description": "Double click on words to see their definition",
  "version": "1.4.3",
  "action": {
    "default_popup": "/src/modules/action/action.html"
  },
  "icons": {
    "48": "/src/icon/icon48.png",
    "128": "/src/icon/icon128.png"
  },
  "background": {
    "service_worker": "/src/modules/dictionary-popup/eventPage.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/src/modules/dictionary-popup/dictionary-popup.css"
      ],
      "js": [
        "/src/modules/dictionary-popup/dictionary-popup.js"
      ]
    }
  ],
  "options_page": "/src/modules/options/options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "/src/utils/languageSettings.js",
        "/src/utils/htmlUtils.js",
        "/src/utils/resultTable.js",
        "/src/utils/disabledUrlService.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ]
}