Let Live

This extension escapes server session timeouts

What is Let Live?

Let Live is a Chrome extension developed by krishanth, and its main feature is "This extension escapes server session timeouts".

Extension Screenshots

screenshot
screenshot

Download Let Live Extension CRX File

Download Let Live 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

                        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.                    

Extension Basic Information

Name Let Live Let Live
ID aacggglhipafndnfihckmepmolhmbejc
Official URL https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc
Description This extension escapes server session timeouts
File Size 183 KB
Installation Count 3,096
Current Version 1.0
Last Updated 2017-05-11
Publish Date 2017-05-11
Rating 3.75/5 Total 8 Ratings
Developer krishanth
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}