Overlay

Overlay

description

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Overlay",
  "version": "1.18.6",
  "description": "description",
  "host_permissions": [
    "https://deps.dev/*",
    "https://debricked.com/*",
    "https://socket.dev/*",
    "https://snyk.io/*"
  ],
  "icons": {
    "48": "icons/icon_48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://stackoverflow.com/*"
      ],
      "js": [
        "content.stackoverflow.js"
      ]
    },
    {
      "matches": [
        "*://www.npmjs.com/*"
      ],
      "js": [
        "content.npmjs.js"
      ]
    },
    {
      "matches": [
        "*://pypi.org/project/*"
      ],
      "js": [
        "content.pypi.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icons/icon_48.png",
    "default_title": "Overlay",
    "default_popup": "popup/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "custom-elements.js",
        "custom-elements.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://stackoverflow.com/*"
    ]
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "manifest_version": 3
}