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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Snapshot Capture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
}