Pinterest Tag Helper

Pinterest Tag Helper

A tool to help you build, troubleshoot and test your Pinterest Tags.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.16",
  "name": "Pinterest Tag Helper",
  "manifest_version": 3,
  "description": "A tool to help you build, troubleshoot and test your Pinterest Tags.",
  "action": {
    "default_title": "Pinterest Tag Helper",
    "default_popup": "popup.html",
    "default_icon": "[email protected]"
  },
  "background": {
    "service_worker": "background.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "storage",
    "tabs",
    "webRequest",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}