Let Live
This extension escapes server session timeouts
Apa itu Let Live?
Let Live adalah ekstensi Chrome yang dikembangkan oleh krishanth, dan fitur utamanya adalah "This extension escapes server session timeouts".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Let Live
Unduh file ekstensi Let Live dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Certain websites which require you to login also tracks user activity and terminates the session if the user is idle for a specified time. This extension saves your current session for any website from timeout by sending requests in background. This currently works only for sessions handled in server side. For client side work is still in progress. Please contact me in case if you find any issues.
Informasi Dasar Ekstensi
Nama | Let Live |
ID | aacggglhipafndnfihckmepmolhmbejc |
URL Resmi | https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc |
Deskripsi | This extension escapes server session timeouts |
Ukuran File | 183 KB |
Jumlah Instalasi | 3,096 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2017-05-11 |
Tanggal Publikasi | 2017-05-11 |
Penilaian | 3.75/5 Total 8 Penilaian |
Pengembang | krishanth |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Let Live", "description": "This extension escapes server session timeouts", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "utils.js", "jquery.min.js", "jquery-ui.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "tabs" ] } |