Taboola Pixel Helper

Taboola Pixel Helper

This extension allows the user to troubleshoot problems when using Taboola Pixels.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Taboola Pixel Helper",
  "description": "This extension allows the user to troubleshoot problems when using Taboola Pixels.",
  "version": "1.2.3",
  "action": {
    "default_popup": "index.html",
    "default_title": "Open Taboola Pixel Helper"
  },
  "background": {
    "service_worker": "background.min.js"
  },
  "icons": {
    "16": "logo-small.png",
    "48": "logo-small.png",
    "128": "logo-small.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injected.min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "webRequest",
    "storage"
  ]
}