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
官方網址 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"
    ]
}