Reddit Pixel Helper

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

Reddit Pixel Helper là gì?

Reddit Pixel Helper là một tiện ích mở rộng Chrome được phát triển bởi Reddit Ads, và tính năng chính của nó là "The Reddit Pixel Helper is a tool to QA your pixel implementation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reddit Pixel Helper

Tải xuống các tệp mở rộng Reddit Pixel Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reddit Pixel Helper Reddit Pixel Helper
ID ebgpcjlgganlidigifggjjiglghjnjcj
URL Chính Thức https://chromewebstore.google.com/detail/reddit-pixel-helper/ebgpcjlgganlidigifggjjiglghjnjcj
Mô tả The Reddit Pixel Helper is a tool to QA your pixel implementation.
Kích Thước Tệp 1.56 MB
Số Lần Cài Đặt 6,503
Phiên Bản Hiện Tại 1.1.8
Cập Nhật Lần Cuối 2024-01-10
Ngày Phát Hành 2022-07-27
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Reddit Ads
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://advertising.reddithelp.com/en/submit-request
URL Trang Chính Sách Bảo Mật https://www.reddit.com/policies/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}