Naver dictionary (DeepL)

Naver dictionary (DeepL)

Enter your own words or select an English word from a webpage to show the definition of the English word. Drag a sentence from a…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_APP_NAME__",
  "description": "__MSG_APP_DESCRIPTION__",
  "version": "6.3",
  "default_locale": "ko",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "css": [
        "content.css"
      ],
      "js": [
        "contentWrapper.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.js",
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rule_endic",
        "enabled": true,
        "path": "rule_endic.json"
      }
    ]
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://dict.naver.com/",
    "https://en.dict.naver.com/",
    "https://api-free.deepl.com/"
  ]
}