Meltwater Extension

Meltwater Extension

A simple way to tag or add content to your Meltwater account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meltwater Extension",
  "version": "4.1.6",
  "description": "A simple way to tag or add content to your Meltwater account.",
  "permissions": [
    "activeTab",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "sidePanel.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "login.html"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "icons": {
    "16": "meltwaterIcon.png",
    "32": "meltwaterIcon.png",
    "48": "meltwaterIcon.png",
    "128": "meltwaterIcon.png"
  },
  "manifest_version": 3
}