ordbogen.com

ordbogen.com

Ordbogens officielle Chrome extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ordbogen.com",
  "version": "1.4.2",
  "description": "Ordbogens officielle Chrome extension.",
  "action": {
    "default_icon": {
      "16": "assets/icons/favicon-16x16.png",
      "32": "assets/icons/favicon-32x32.png",
      "96": "assets/icons/favicon-96x96.png"
    },
    "default_title": "ordbogen.com",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "assets/icons/favicon-16x16.png",
    "32": "assets/icons/favicon-32x32.png",
    "96": "assets/icons/favicon-96x96.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-scripts/import-contentscript.js"
      ]
    }
  ],
  "host_permissions": [
    "http://www.ordbogen.com/*",
    "https://www.ordbogen.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.png",
        "assets/*.svg",
        "assets/icons/*.png"
      ],
      "matches": [
        "https://github.com/*"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content-scripts/contentscript.js"
      ],
      "matches": [
        "*://*/*",
        "http://www.ordbogen.com/*",
        "https://www.ordbogen.com/*"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs"
  ]
}