Snap Pixel Helper

Snap Pixel Helper

什么是Snap Pixel Helper?

Snap Pixel Helper是由Snap Inc.开发的Chrome扩展程序,该扩展的主要功能是“Snap Pixel Helper”。

扩展截图

screenshot
screenshot

下载Snap Pixel Helper扩展crx文件

下载Snap Pixel Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        About the extension:
Snap’s Pixel Chrome Helper is a simple Chrome Extension, which allows advertisers to verify, debug, and troubleshoot Snap Pixel implementations. 

About Snap Pixel:
The Snap Pixel is a piece of JavaScript code that helps advertisers measure the cross-device impact of campaigns. Advertisers will be able to see how many Snapchatters take action on their website(s) after seeing their ad. 

The Snap Pixel is best suited for your direct response goals, such as driving leads, subscriptions, or product sales. You can measure these goals beyond what happens during a single session, or on a single device. 

By adding the Snap Pixel Helper you agree to the Snap Terms of Service at https://www.snap.com/en-US/terms/                    

扩展基本信息

名称 Snap Pixel Helper Snap Pixel Helper
ID hnlbfcoodjpconffdbddfglilhkhpdnf
官方URL https://chromewebstore.google.com/detail/snap-pixel-helper/hnlbfcoodjpconffdbddfglilhkhpdnf
简介 Snap Pixel Helper
文件大小 33.46 KB
安装次数 66,521
当前版本 4.0.0
更新时间 2023-09-22
上架时间 2020-02-28
评分 4.30/5 共10次评分
开发者 Snap Inc.
电子邮箱 [email protected]
付费类型 free
扩展官网 https://businesshelp.snapchat.com/en-US/article/snap-pixel-about
帮助页面URL https://businesshelp.snapchat.com/en-US/article/snap-pixel-faq
隐私政策页面URL https://www.snap.com/en-US/privacy/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Snap Pixel Helper",
    "description": "Snap Pixel Helper",
    "version": "4.0.0",
    "icons": {
        "16": "asset\/icon_16.png",
        "32": "asset\/icon_32.png",
        "128": "asset\/icon_128.png"
    },
    "action": {
        "default_title": "Snap Pixel Helper",
        "default_icon": {
            "16": "asset\/icon_disabled_16.png",
            "32": "asset\/icon_disabled_32.png",
            "128": "asset\/icon_disabled_128.png"
        }
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "scripting",
        "webRequest",
        "cookies"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/embedded.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}