Snapshot Capture

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

ما هو Snapshot Capture؟

Snapshot Capture هو إضافة Chrome تم تطويرها بواسطة Tealeaf by Acoustic، والميزة الرئيسية لها هي "With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Snapshot Capture

قم بتنزيل ملفات الامتداد Snapshot Capture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة https://support.goacoustic.com/
عنوان صفحة سياسة الخصوصية 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"
}