Snap Pixel Helper

Snap Pixel Helper

Snap Pixel Helper là gì?

Snap Pixel Helper là một tiện ích mở rộng Chrome được phát triển bởi Snap Inc., và tính năng chính của nó là "Snap Pixel Helper".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Snap 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

                        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/                    

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

Tên Snap Pixel Helper Snap Pixel Helper
ID hnlbfcoodjpconffdbddfglilhkhpdnf
URL Chính Thức https://chromewebstore.google.com/detail/snap-pixel-helper/hnlbfcoodjpconffdbddfglilhkhpdnf
Mô tả Snap Pixel Helper
Kích Thước Tệp 33.46 KB
Số Lần Cài Đặt 66,521
Phiên Bản Hiện Tại 4.0.0
Cập Nhật Lần Cuối 2023-09-22
Ngày Phát Hành 2020-02-28
Đánh Giá 4.30/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Snap Inc.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://businesshelp.snapchat.com/en-US/article/snap-pixel-about
URL Trang Trợ Giúp https://businesshelp.snapchat.com/en-US/article/snap-pixel-faq
URL Trang Chính Sách Bảo Mật https://www.snap.com/en-US/privacy/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}