Let Live

This extension escapes server session timeouts

Cos'è Let Live?

Let Live è un'estensione di Chrome sviluppata da krishanth, e la sua funzione principale è "This extension escapes server session timeouts".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Let Live

Scarica i file di estensione Let Live 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Let Live Let Live
ID aacggglhipafndnfihckmepmolhmbejc
URL Ufficiale https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc
Descrizione This extension escapes server session timeouts
Dimensione del File 183 KB
Conteggio Installazioni 3,096
Versione Corrente 1.0
Ultimo Aggiornamento 2017-05-11
Data di Pubblicazione 2017-05-11
Valutazione 3.75/5 Totale 8 Valutazioni
Sviluppatore krishanth
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}