Pinterest Tag Helper

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

What is Pinterest Tag Helper?

Pinterest Tag Helper is a Chrome extension developed by Pinterest, Inc., and its main feature is "A tool to help you build, troubleshoot and test your Pinterest Tags.".

Extension Screenshots

screenshot

Download Pinterest Tag Helper Extension CRX File

Download Pinterest Tag Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        For more details on how to use the extension, visit our Developer Center.
https://developers.pinterest.com/docs/conversions/pinterest-tag-helper-chrome/

Release note for version 0.1.16: UI Improvements and adding Google Analytics functionality                    

Extension Basic Information

Name Pinterest Tag Helper Pinterest Tag Helper
ID gmlcbajhgoaaegmlbaclmmmhpmfdajmp
Official URL https://chromewebstore.google.com/detail/pinterest-tag-helper/gmlcbajhgoaaegmlbaclmmmhpmfdajmp
Description A tool to help you build, troubleshoot and test your Pinterest Tags.
File Size 1.66 MB
Installation Count 115,713
Current Version 0.1.16
Last Updated 2023-09-01
Publish Date 2020-06-18
Rating 4.18/5 Total 51 Ratings
Developer Pinterest, Inc.
Email [email protected]
Payment Type free
Privacy Policy Page URL https://policy.pinterest.com/en/privacy-policy
Supported Languages en
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'"
    }
}