Snapshot Capture

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

什麼是Snapshot Capture?

Snapshot Capture是由Tealeaf by Acoustic開發的Chrome擴展程式,該擴展的主要功能是“With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).”。

擴展截圖

screenshot
screenshot
screenshot

下載Snapshot Capture擴展crx文件

下載Snapshot Capture擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Snapshot Capture Snapshot Capture
ID gpnkjjopimalpodelccgafgmofebanjd
官方網址 https://chromewebstore.google.com/detail/snapshot-capture/gpnkjjopimalpodelccgafgmofebanjd
簡介 With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).
檔案大小 970 KB
安裝次數 236
目前版本 22.9.1.0
更新時間 2022-09-05
上架時間 2022-05-01
開發者 Tealeaf by Acoustic
電子郵箱 [email protected]
付費類型 free
擴展官網 https://acoustic.com/tealeaf
說明頁面URL https://support.goacoustic.com/
隱私政策頁面URL https://acoustic.com/privacy-notice
支援的語言 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"
}