Let Live

This extension escapes server session timeouts

Vad är Let Live?

Let Live är en Chrome-tillägg utvecklad av krishanth, och dess huvudfunktion är "This extension escapes server session timeouts".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Let Live-förlängningens CRX-fil

Ladda ner Let Live-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Let Live Let Live
ID aacggglhipafndnfihckmepmolhmbejc
Officiell webbadress https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc
Beskrivning This extension escapes server session timeouts
Filstorlek 183 KB
Antal Installationer 3,096
Aktuell Version 1.0
Senast Uppdaterad 2017-05-11
Publiceringsdatum 2017-05-11
Betyg 3.75/5 Totalt 8 Betyg
Utvecklare krishanth
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}