IIQAnalyser

Intent IQ Analytics Extension

Co to jest IIQAnalyser?

IIQAnalyser to rozszerzenie Chrome opracowane przez iiq.extension, a jego główną funkcją jest „Intent IQ Analytics Extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia IIQAnalyser

Pobierz pliki rozszerzeń IIQAnalyser 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

                        IIQ Integration analysis tool.
This extension provides an ability to perform integration analysis of Intent IQ JS SDK. Gives an ability to visualize results and to perform deep analysis. See and visualize prebid events and flow.                    

Podstawowe informacje o rozszerzeniu

Nazwa IIQAnalyser IIQAnalyser
ID obmmhembafkonmdfkbeakglhideecapf
Oficjalny URL https://chromewebstore.google.com/detail/iiqanalyser/obmmhembafkonmdfkbeakglhideecapf
Opis Intent IQ Analytics Extension
Rozmiar pliku 1.27 MB
Liczba instalacji 109
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-01-19
Data Publikacji 2022-10-19
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper iiq.extension
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.intentiq.com/
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IIQAnalyser",
    "description": "Intent IQ Analytics Extension",
    "version": "1.1",
    "manifest_version": 3,
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/Q3-16.png",
        "32": "images\/Q3-32.png",
        "48": "images\/Q3-48.png",
        "128": "images\/Q3-128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_title": "Intent IQ Analytics Extension",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js",
                "handleStorageData.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.js",
                "frame.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}