Examine source code of dictionary

Inspect and view changes in dictionary source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "dictionary",
  "short_name": "dictionary : translate words.",
  "version": "0.3.1",
  "manifest_version": 3,
  "description": "dictionary : translate words.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_title": "Dictionary",
    "default_icon": "icons/icon128.png",
    "default_popup": "frontPage.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "options.html",
  "host_permissions": [
    "https://dict.naver.com/"
  ],
  "permissions": [
    "activeTab",
    "background",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/jquery-3.4.1.min.js",
        "shared.js",
        "wordDictionary.js"
      ],
      "css": [
        "wordDictionary.css"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}