Let Live
This extension escapes server session timeouts
Let Live란 무엇입니까?
Let Live은(는) krishanth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension escapes server session timeouts"입니다.
확장 프로그램 스크린샷
Let Live 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |