Let Live

This extension escapes server session timeouts

Wat is Let Live?

Let Live is een Chrome-extensie ontwikkeld door krishanth, en de belangrijkste functie is "This extension escapes server session timeouts".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Let Live

Download Let Live-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Let Live Let Live
ID aacggglhipafndnfihckmepmolhmbejc
Officiële URL https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc
Beschrijving This extension escapes server session timeouts
Bestandsgrootte 183 KB
Aantal Installaties 3,096
Huidige Versie 1.0
Laatst Bijgewerkt 2017-05-11
Publicatiedatum 2017-05-11
Beoordeling 3.75/5 Totaal 8 Beoordelingen
Ontwikkelaar krishanth
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}