Let Live

This extension escapes server session timeouts

Co to jest Let Live?

Let Live to rozszerzenie Chrome opracowane przez krishanth, a jego główną funkcją jest „This extension escapes server session timeouts”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Let Live

Pobierz pliki rozszerzeń Let Live w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Let Live Let Live
ID aacggglhipafndnfihckmepmolhmbejc
Oficjalny URL https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc
Opis This extension escapes server session timeouts
Rozmiar pliku 183 KB
Liczba instalacji 3,096
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-05-11
Data Publikacji 2017-05-11
Ocena 3.75/5 Łącznie 8 Oceny
Deweloper krishanth
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}