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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |