Let Live
This extension escapes server session timeouts
Let Live là gì?
Let Live là một tiện ích mở rộng Chrome được phát triển bởi krishanth, và tính năng chính của nó là "This extension escapes server session timeouts".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Let Live
Tải xuống các tệp mở rộng Let Live dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Let Live |
ID | aacggglhipafndnfihckmepmolhmbejc |
URL Chính Thức | https://chromewebstore.google.com/detail/let-live/aacggglhipafndnfihckmepmolhmbejc |
Mô tả | This extension escapes server session timeouts |
Kích Thước Tệp | 183 KB |
Số Lần Cài Đặt | 3,096 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2017-05-11 |
Ngày Phát Hành | 2017-05-11 |
Đánh Giá | 3.75/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | krishanth |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |