Snapshot Capture

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

Snapshot Capture là gì?

Snapshot Capture là một tiện ích mở rộng Chrome được phát triển bởi Tealeaf by Acoustic, và tính năng chính của nó là "With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Snapshot Capture

Tải xuống các tệp mở rộng Snapshot Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Snapshot Capture Snapshot Capture
ID gpnkjjopimalpodelccgafgmofebanjd
URL Chính Thức https://chromewebstore.google.com/detail/snapshot-capture/gpnkjjopimalpodelccgafgmofebanjd
Mô tả With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).
Kích Thước Tệp 970 KB
Số Lần Cài Đặt 236
Phiên Bản Hiện Tại 22.9.1.0
Cập Nhật Lần Cuối 2022-09-05
Ngày Phát Hành 2022-05-01
Nhà Phát Triển Tealeaf by Acoustic
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://acoustic.com/tealeaf
URL Trang Trợ Giúp https://support.goacoustic.com/
URL Trang Chính Sách Bảo Mật https://acoustic.com/privacy-notice
Ngôn Ngữ Được Hỗ Trợ 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"
}