Session Alive

Keep your Session Alive at any website and never get logged out...

Co to jest Session Alive?

Session Alive to rozszerzenie Chrome opracowane przez Arun, a jego główną funkcją jest „Keep your Session Alive at any website and never get logged out...”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Session Alive

Pobierz pliki rozszerzeń Session Alive w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Almost all websites with authentication has a session timeout. If you are inactive in the website for some time then your session may be expired. You need to login again to perform any action in the website.

This extension will keep your session from expiring by reloading your website in the background. This will keep your session alive without manually reloading website even you are inactive in the website for long period of time.
Background page request
This option keep the session alive by requesting page in the background using AJAX requests, and page reload is not required and unsaved changes are not lost.
Set the Background trigger URL as your website dashboard/ welcome URL, set the Interval and save. Navigate to the Trigger URL in a New Tab and Your session is now alive!

Automatic stopping of Background page request
The rule is automatically stopped by analyzing the server response.

Foreground page reload
The Background page reload will not be enough to keep the session alive, if websites implements JavaScript idle timer in the browser itself. The Foreground page reload option can overcome this limitation.
This option keep the session alive by auto-reloading current page in the browser.

Automatic stopping of Foreground page reload
The rule is automatically stopped if the user navigates away from the Trigger URL.

Notifications
Browser Notifications can be set for the page reload success/ fail conditions.

Disable a rule
The rule can be disabled if you want to temporarily stop the rule from triggering.

Easily create and edit rules in the settings page, and also try the different options available to suit your needs.

Permissions Requested

1. Access your data for all websites : required to inject a JavaScript code to all the webpages which is activated only when a rule is running.
2. Access browser tabs : required to access the browser tab where the rule is running.
3. Display notifications to you : required to display Browser Notifications with the status of the running rule.

Session Alive extension is Open Source. If you want to contribute to this project or encounter any issues please visit: https://github.com/arunelias/session-alive

Always assess the safety of any extension before installing. Here are tips for assessing the safety of an extension https://support.google.com/chrome/a/answer/9897812?hl=en                    

Podstawowe informacje o rozszerzeniu

Nazwa Session Alive Session Alive
ID aodfoiacnmepndhojccepdcpmehjbham
Oficjalny URL https://chromewebstore.google.com/detail/session-alive/aodfoiacnmepndhojccepdcpmehjbham
Opis Keep your Session Alive at any website and never get logged out...
Rozmiar pliku 118 KB
Liczba instalacji 11,138
Aktualna Wersja 2.2
Ostatnia Aktualizacja 2022-08-04
Data Publikacji 2022-08-03
Ocena 3.89/5 Łącznie 9 Oceny
Deweloper Arun
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/arunelias/session-alive/
Adres URL Strony Pomocy https://github.com/arunelias/session-alive/issues
Obsługiwane Języki de,en,fr,nl,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "2.2",
    "manifest_version": 3,
    "homepage_url": "https:\/\/github.com\/arunelias\/session-alive",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "notifications",
        "storage"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_title": "Session Alive",
        "default_icon": "assets\/icon\/icon.png"
    },
    "icons": {
        "16": "assets\/icon\/icon.png",
        "32": "assets\/icon\/icon.png",
        "48": "assets\/icon\/icon.png",
        "64": "assets\/icon\/icon.png",
        "128": "assets\/icon\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "inject\/cs.css"
            ],
            "js": [
                "inject\/cs.js"
            ]
        }
    ],
    "options_ui": {
        "browser_style": false,
        "open_in_tab": true,
        "page": "settings\/settings.html?"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "beep.wav"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "default_locale": "en"
}