Session Replay

Save logrocket sessions running on your computer. Support for HotJar and FullStory coming soon.

What is Session Replay?

Session Replay is a Chrome extension developed by capsesh, and its main feature is "Save logrocket sessions running on your computer. Support for HotJar and FullStory coming soon.".

Extension Screenshots

screenshot

Download Session Replay Extension CRX File

Download Session Replay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Easily get the Session ID of the currently running logrocket, HotJar, or FullStory session.                    

Extension Basic Information

Name Session Replay Session Replay
ID gfaemlcnkcinodjajiecmajbpifknfjj
Official URL https://chromewebstore.google.com/detail/session-replay/gfaemlcnkcinodjajiecmajbpifknfjj
Description Save logrocket sessions running on your computer. Support for HotJar and FullStory coming soon.
File Size 104 KB
Installation Count 28
Current Version 1.0.1
Last Updated 2021-05-10
Publish Date 2021-05-05
Rating 5.00/5 Total 1 Ratings
Developer capsesh
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Session Replay",
    "description": "Save logrocket sessions running on your computer. Support for HotJar and FullStory coming soon.",
    "manifest_version": 2,
    "version": "1.0.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}