German Popup Dictionary

German Popup Dictionary

Press shift to scan a word, or click the extension icon to search 🇩🇪

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "German Popup Dictionary",
  "description": "Press shift to scan a word, or click the extension icon to search 🇩🇪",
  "version": "0.1.0",
  "author": "[email protected]",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "host_permissions": [
    "https://en.wiktionary.org/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_idle",
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "js": [
        "content.js"
      ],
      "css": [
        "popup.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}