Session Replay
Save logrocket sessions running on your computer. Support for HotJar and FullStory coming soon.
Cos'è Session Replay?
Session Replay è un'estensione di Chrome sviluppata da capsesh, e la sua funzione principale è "Save logrocket sessions running on your computer. Support for HotJar and FullStory coming soon.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Session Replay
Scarica i file di estensione Session Replay in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Easily get the Session ID of the currently running logrocket, HotJar, or FullStory session.
Informazioni di Base sull'Estensione
Nome | Session Replay |
ID | gfaemlcnkcinodjajiecmajbpifknfjj |
URL Ufficiale | https://chromewebstore.google.com/detail/session-replay/gfaemlcnkcinodjajiecmajbpifknfjj |
Descrizione | Save logrocket sessions running on your computer. Support for HotJar and FullStory coming soon. |
Dimensione del File | 104 KB |
Conteggio Installazioni | 28 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2021-05-10 |
Data di Pubblicazione | 2021-05-05 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | capsesh |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |