Let Live
This extension escapes server session timeouts
Let Liveคืออะไร?
Let Live เป็นส่วนขยายของ Chrome ที่พัฒนาโดย krishanth และคุณลักษณะหลักของมันคือ "This extension escapes server session timeouts"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Let Live
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |