Datamask

Datamask

DATAMASK: Protect and Manage your Data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Datamask",
  "description": "DATAMASK: Protect and Manage your Data",
  "version": "2.5.0",
  "icons": {
    "48": "images/icon-32.png",
    "96": "images/icon-128.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png",
    "512": "images/icon-512.png"
  },
  "action": {
    "default_title": "Datamask",
    "default_popup": "./popup/index.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "19": "images/icon-32.png",
      "32": "images/icon-32.png",
      "38": "images/icon-32.png",
      "48": "images/icon-32.png",
      "72": "images/icon-128.png"
    }
  },
  "background": {
    "service_worker": "./background/index.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "nativeMessaging",
    "notifications",
    "management",
    "cookies",
    "history",
    "system.display"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://datamask.app/*",
      "https://humandataincome.com/*",
      "https://*.humandataincome.com/*",
      "https://theoremreach.com/*",
      "https://wss.pollfish.com/*",
      "https://zampparticipant.zamplia.com/*",
      "https://www.surveygizmo.com/*",
      "https://www.samplicio.us/*",
      "https://survey.bz/*",
      "https://spectrumsurveys.com/*",
      "https://spectrumsurveys.com/*",
      "https://fusion.spectrumsurveys.com/*",
      "https://www.prsrvy.com/*",
      "https://surveymyopinion.researchnow.com/*",
      "https://edgesurvey.innovatemr.net/*",
      "https://web.bitlabs.ai/*",
      "http://localhost:4200/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "autofill-features/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "onboarding/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content/ads.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content/datawallet-provider-isolated.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content/extension-info.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content/autofill.utils.js",
        "./content/autofill.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}