Let Live

This extension escapes server session timeouts

Что такое Let Live?

Let Live - это расширение Chrome, разработанное krishanth, и его основная функция - "This extension escapes server session timeouts".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Let Live

Скачайте файлы расширений Let Live в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Let Live Let Live
ID aacggglhipafndnfihckmepmolhmbejc
Официальный URL https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc
Описание This extension escapes server session timeouts
Размер файла 183 KB
Количество установок 3,096
Текущая Версия 1.0
Последнее Обновление 2017-05-11
Дата публикации 2017-05-11
Рейтинг 3.75/5 Всего 8 оценок
Разработчик krishanth
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}