DeltaX - Pixel Helper

The DeltaX Pixel Helper is a troubleshooting tool that helps you validate your DeltaX Conversion Pixel and DeltaX Goal Pixels.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "0.4.3",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "tabs"
  ],
  "browser_action": {
    "permissions": [
      "background"
    ],
    "default_title": "Check the pixels on this page",
    "default_icon": "icons/dx-logo-transparent_bw.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-1.11.3.min.js",
        "js/contentScript.js"
      ]
    }
  ],
  "icons": {
    "36": "icons/New_Logo/icon36.png",
    "48": "icons/New_Logo/icon48.png",
    "72": "icons/New_Logo/icon72.png",
    "96": "icons/New_Logo/icon96.png",
    "144": "icons/New_Logo/icon144.png",
    "192": "icons/New_Logo/icon192.png"
  }
}