Dreamdata

Dreamdata

Get instant access to Dreamdata insights as you browse the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dreamdata",
  "version": "1.0.3",
  "description": "Get instant access to Dreamdata insights as you browse the web",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "devtools_page": "index.html",
  "host_permissions": [
    "*://*/.dreamdata.io",
    "http://localhost:3000/",
    "http://localhost:8080/",
    "https://app.dreamdataio.com/",
    "https://app.dreamdata.io/",
    "https://api.s.dreamdata.io/"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "cookies"
  ],
  "icons": {
    "16": "favicon.png",
    "48": "favicon.png",
    "128": "favicon.png",
    "256": "favicon.png"
  },
  "action": {
    "default_icon": {
      "16": "favicon.png",
      "24": "favicon.png",
      "32": "favicon.png"
    },
    "default_title": "Dreamdata",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  }
}