Snapshot Capture

With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).

¿Qué es Snapshot Capture?

Snapshot Capture es una extensión de Chrome desarrollada por Tealeaf by Acoustic, y su función principal es "With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Snapshot Capture

Descarga archivos de extensión Snapshot Capture en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Experience real-time analytics with Tealeaf page overlays and integration with third-party analytics tools. Go beyond surface level insights with speed and accuracy.


Our extension allows existing Tealeaf subscribers to take a snapshot of a page and analyze user behavior’s using heat maps, link analytics, and other page overlay features within the product. These overlays provide insights into how different customer segments interact with the page and identify usability and user experience struggles.


Additionally, you can integrate Tealeaf with Google Analytics or Adobe Analytics to access quick links to Tealeaf session replays from within the third-party analytics reports.                    

Información Básica de la Extensión

Nombre Snapshot Capture Snapshot Capture
ID gpnkjjopimalpodelccgafgmofebanjd
URL Oficial https://chromewebstore.google.com/detail/snapshot-capture/gpnkjjopimalpodelccgafgmofebanjd
Descripción With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).
Tamaño del Archivo 970 KB
Cantidad de Instalaciones 236
Versión Actual 22.9.1.0
Última Actualización 2022-09-05
Fecha de Publicación 2022-05-01
Desarrollador Tealeaf by Acoustic
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://acoustic.com/tealeaf
URL de la Página de Ayuda https://support.goacoustic.com/
URL de la Página de Política de Privacidad https://acoustic.com/privacy-notice
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Snapshot Capture",
    "description": "With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).",
    "background": {
        "service_worker": "sw.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/capturepage\/pageScroll.js"
            ]
        }
    ],
    "action": {
        "default_title": "Capture",
        "default_icon": {
            "16": "icons\/camera_16x16.png",
            "18": "icons\/camera_18x18.png",
            "32": "icons\/camera_32x32.png",
            "36": "icons\/camera_36x36.png",
            "64": "icons\/camera_64x64.png"
        },
        "default_popup": "capturepopup\/snapshotCapturePopup.html"
    },
    "commands": {
        "capture-snapshot": {
            "suggested_key": {
                "windows": "Alt+Shift+P",
                "default": "Alt+Shift+P",
                "mac": "MacCtrl+Shift+P",
                "linux": "Alt+P",
                "chromeos": "Alt+Shift+P"
            },
            "description": "Capture the current page"
        }
    },
    "permissions": [
        "webRequest",
        "tabs",
        "alarms",
        "views",
        "storage",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/loading.gif",
                "capturepopup\/*",
                "resources\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "version": "22.9.1.0"
}