Let Live

This extension escapes server session timeouts

Co je Let Live?

Let Live je rozšíření Chrome vyvinuté krishanth, a jeho hlavní funkcí je „This extension escapes server session timeouts“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Let Live

Stáhněte si soubory rozšíření Let Live ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Let Live Let Live
ID aacggglhipafndnfihckmepmolhmbejc
Oficiální URL https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc
Popis This extension escapes server session timeouts
Velikost souboru 183 KB
Počet instalací 3,096
Aktuální Verze 1.0
Poslední Aktualizace 2017-05-11
Datum Vydání 2017-05-11
Hodnocení 3.75/5 Celkem 8 Hodnocení
Vývojář krishanth
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}