Explain Selected

Explain Selected

Go beyond basic definitions - instantly find the correct definition/pronunciation and receive a personalized explanation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Explain Selected",
  "version": "1.5",
  "description": "Go beyond basic definitions - instantly find the correct definition/pronunciation and receive a personalized explanation.",
  "host_permissions": [
    "https://explain-selected.com/*"
  ],
  "permissions": [
    "storage",
    "offscreen"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "js": [
        "markdown-it.min.js",
        "content.js",
        "[email protected]",
        "[email protected]",
        "sweetalert2.all.min.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.css",
        "*.png",
        "*.svg"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "logo16.png",
      "48": "logo48.png",
      "128": "logo128.png"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "http://localhost:3000/*",
      "https://explain-selected.com/*",
      "https://beta.explain-selected.com/*"
    ]
  }
}