TikTok Pixel Helper

TikTok Pixel Helper

TikTok Pixel Helper is a Chrome extension that can help you verify and troubleshoot pixel installation by checking for errors and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "2.2.18",
  "default_locale": "en",
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "iframe-content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/pixel_helper_active_icon_1.png",
    "32": "images/pixel_helper_active_icon_2.png",
    "48": "images/pixel_helper_active_icon_3.png",
    "128": "images/pixel_helper_active_icon_4.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/pixel_helper_icon_1.png",
      "32": "images/pixel_helper_icon_1.png",
      "48": "images/pixel_helper_icon_3.png",
      "128": "images/pixel_helper_icon_4.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "inject.js",
    "pickup.js",
    "mask.js"
  ],
  "manifest_version": 2
}