With the snapshot capture extension, you can take snapshots of pages for analysis in Experience Analytics (Tealeaf).
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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": [
"<all_urls>"
],
"js": [
"content_scripts/capturepage/utils.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",
"storage",
"webNavigation",
"scripting",
"cookies"
],
"incognito": "split",
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"icons/loading.gif",
"capturepopup/*",
"resources/*"
],
"matches": [
"<all_urls>"
]
}
],
"version": "22.11.6.0"
}