Segment Inspector

Monitor all Segment activity on any website

Co to jest Segment Inspector?

Segment Inspector to rozszerzenie Chrome opracowane przez Twilio Inc, a jego główną funkcją jest „Monitor all Segment activity on any website”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Segment Inspector

Pobierz pliki rozszerzeń Segment Inspector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Segment Inspector is the one-stop shop for inspecting Segment analytics integration with an app or website. From monitoring events, to exploring user's traits and all the way to checking active plugins and integrations.                    

Podstawowe informacje o rozszerzeniu

Nazwa Segment Inspector Segment Inspector
ID jfcbmnpfbhhlhfclmiijpldieboendfo
Oficjalny URL https://chromewebstore.google.com/detail/segment-inspector/jfcbmnpfbhhlhfclmiijpldieboendfo
Opis Monitor all Segment activity on any website
Rozmiar pliku 9.11 MB
Liczba instalacji 460
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-10-15
Data Publikacji 2023-10-15
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Twilio Inc
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://segment.com
Adres URL Strony Polityki Prywatności https://www.twilio.com/legal/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.0",
    "name": "Segment Inspector",
    "short_name": "Segment Inspector",
    "description": "Monitor all Segment activity on any website",
    "homepage_url": "https:\/\/segment.com",
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16-greyed.png"
        },
        "default_title": "Segment Inspector",
        "default_popup": "public\/popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "broker.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}