Let Live

This extension escapes server session timeouts

Let Liveとは何ですか?

Let Liveはkrishanthによって開発されたChromeの拡張機能で、その主な機能は「This extension escapes server session timeouts」です。

拡張機能のスクリーンショット

screenshot
screenshot

Let Live拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}