Reddit Pixel Helper

The Reddit Pixel Helper is a tool to QA your pixel implementation.

什么是Reddit Pixel Helper?

Reddit Pixel Helper是由Reddit Ads开发的Chrome扩展程序,该扩展的主要功能是“The Reddit Pixel Helper is a tool to QA your pixel implementation.”。

扩展截图

screenshot
screenshot
screenshot

下载Reddit Pixel Helper扩展crx文件

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

扩展使用说明

                        While browsing any site, the extension badge will show the number of Reddit Pixel events firing on a page. Open the extension on any page with the pixel implemented to see which events are actively firing, identify any errors in their configuration, and get recommendations for fixing errors. Check out our Help Center for more info: https://advertising.reddithelp.com/en/categories/measurement/reddit-pixel-helper

By using the Reddit Pixel Helper you agree to the Reddit Advertising Platform Terms: https://advertising.reddithelp.com/en/categories/policy-guidelines/advertising-terms-ads-platform                    

扩展基本信息

名称 Reddit Pixel Helper Reddit Pixel Helper
ID ebgpcjlgganlidigifggjjiglghjnjcj
官方URL https://chromewebstore.google.com/detail/reddit-pixel-helper/ebgpcjlgganlidigifggjjiglghjnjcj
简介 The Reddit Pixel Helper is a tool to QA your pixel implementation.
文件大小 1.56 MB
安装次数 6,503
当前版本 1.1.8
更新时间 2024-01-10
上架时间 2022-07-27
评分 5.00/5 共5次评分
开发者 Reddit Ads
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://advertising.reddithelp.com/en/submit-request
隐私政策页面URL https://www.reddit.com/policies/privacy-policy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Reddit Pixel Helper",
    "short_name": "Reddit Pixel Helper",
    "description": "The Reddit Pixel Helper is a tool to QA your pixel implementation.",
    "version": "1.1.8",
    "action": {
        "default_icon": {
            "16": "img\/icon_passive_16.png",
            "48": "img\/icon_passive_48.png",
            "128": "img\/icon_passive_128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Reddit Pixel Helper"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "webRequest",
        "tabs"
    ],
    "host_permissions": [
        "",
        "*:\/\/*.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "img\/icon_active_16.png",
        "48": "img\/icon_active_48.png",
        "128": "img\/icon_active_128.png"
    }
}