Snowplow Analytics Debugger

Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools.

Snowplow Analytics Debugger क्या है?

Snowplow Analytics Debugger https://snowcatcloud.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Snowplow Analytics Debugger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        If you work with Snowplow as much as we do, you know debugging is not as straightforward as inspecting hits with the network tab. Now it is!.

Looking to improve developers day-to-day during implementation and quality assurance of Snowplow, we've created a Chrome extension that is both simple and intuitive to use.

Features

 - Collector Override for easy debug
 - Event validation with detailed errors
 - Custom Iglu servers (including your local drive)
 - Rest your eyes with Chrome Dark and Light themes
 - Easier QA, export to CSV
 - See what you need, filter for any parameter

Changelog 

v.1.2.0 
Bugfixes
+ Migrated to Manifest v3.0
+ Disabled caching of schemas to ease schema development
+ Fixed inconsistent colors in long event list

v1.1.0 - August 2021
+ Added red background when hits have invalid payload (against schema)
+ Event validation against available schema with detailed errors
+ Hit detail reveal IGLU repositories schema URL used for validation
+ Several bug fixes

Please report any issues and feature requests to [email protected].                    

एक्सटेंशन की मूल जानकारी

नाम Snowplow Analytics Debugger Snowplow Analytics Debugger
ID jbnlcgeengmijcghameodeaenefieedm
आधिकारिक URL https://chromewebstore.google.com/detail/snowplow-analytics-debugg/jbnlcgeengmijcghameodeaenefieedm
विवरण Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools.
फ़ाइल का आकार 276 KB
स्थापना संख्या 4,269
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2022-03-14
प्रकाशन तिथि 2019-11-04
रेटिंग 4.50/5 कुल 8 रेटिंग्स
डेवलपर https://snowcatcloud.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.snowcatcloud.com
सहायता पृष्ठ URL https://docs.snowcatcloud.com/snowplow-chrome-extension/introduction
गोपनीयता नीति पृष्ठ URL https://www.snowcatcloud.com/legal/privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Snowplow Analytics Debugger",
    "short_name": "Snowplow Debugger",
    "version": "1.2.0",
    "description": "Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools.",
    "author": "SnowcatCloud",
    "minimum_chrome_version": "88",
    "icons": {
        "128": "\/img\/logo.png"
    },
    "action": {
        "default_icon": "\/img\/logo.png",
        "default_popup": "\/pages\/popup\/index.html"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "sandbox": {
        "pages": [
            "\/pages\/sandbox\/index.html"
        ]
    },
    "devtools_page": "\/js\/background\/devtools.html",
    "options_ui": {
        "page": "\/pages\/options\/index.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "config.json",
                "js\/injected_script.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ]
}