Let Live
This extension escapes server session timeouts
什么是Let Live?
Let Live是由krishanth开发的Chrome扩展程序,该扩展的主要功能是“This extension escapes server session timeouts”。
扩展截图
下载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 |
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" ] } |