Session Switcher & Account Manager

Switch between multiple sessions on multiple websites.

Cos'è Session Switcher & Account Manager?

Session Switcher & Account Manager è un'estensione di Chrome sviluppata da https://kodemuse.dev, e la sua funzione principale è "Switch between multiple sessions on multiple websites.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Session Switcher & Account Manager

Scarica i file di estensione Session Switcher & Account Manager in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        "Session Switcher & Account Manager" extension allows users to store and switch between multiple sessions on multiple websites.

This extension can also be used as a developer tool.

A user can store multiple sessions and switch between any of the stored sessions using "Session Switcher & Account Manager" chrome extension.

Limitations:
This extension does not work well for complicated URLs such as a.b.c.d.example.co.in, because it is not possible to detect domain name for complicated URLs.

You can store up-to 5 sessions in free version of "Session Switcher & Account Manager", however if you want to store more sessions than that then you must purchase license.

Following data can not be stored or retrieved using our extension:
- Indexed DB
- WebSQL
- App cache
- Browser cache

Privacy notice: 
This software neither collects nor transmits any personally identifiable information. This software does not track your browsing behavior. Information necessary for functioning of this software is stored on the devices of the end user, our servers do not have access to this information.

Privacy policy:
https://www.kodemuse.dev/privacy/

Terms:
https://www.kodemuse.dev/tos/                    

Informazioni di Base sull'Estensione

Nome Session Switcher & Account Manager Session Switcher & Account Manager
ID cfoijgjkinadiedfgkpdkeipkedfjcfk
URL Ufficiale https://chromewebstore.google.com/detail/session-switcher-account/cfoijgjkinadiedfgkpdkeipkedfjcfk
Descrizione Switch between multiple sessions on multiple websites.
Dimensione del File 1.36 MB
Conteggio Installazioni 817
Versione Corrente 3.0.0.1
Ultimo Aggiornamento 2023-07-21
Data di Pubblicazione 2020-02-20
Valutazione 3.50/5 Totale 10 Valutazioni
Sviluppatore https://kodemuse.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.kodemuse.dev/documentation-session-switcher/
URL della Pagina di Aiuto https://www.kodemuse.dev/documentation-session-switcher/
URL della Pagina della Politica sulla Privacy https://www.kodemuse.dev/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Session Switcher & Account Manager",
    "version": "3.0.0.1",
    "short_name": "SS",
    "description": "Switch between multiple sessions on multiple websites.",
    "author": "KodeMuse Software Private Limited",
    "permissions": [
        "cookies",
        "storage",
        "tabs",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "\/image\/icon\/free\/16.png",
        "24": "\/image\/icon\/free\/24.png",
        "32": "\/image\/icon\/free\/32.png",
        "48": "\/image\/icon\/free\/48.png",
        "64": "\/image\/icon\/free\/64.png",
        "128": "\/image\/icon\/free\/128.png",
        "256": "\/image\/icon\/free\/256.png",
        "512": "\/image\/icon\/free\/512.png"
    },
    "action": {
        "default_popup": "\/ng\/popup\/comp\/popup\/popup.html",
        "default_icon": {
            "16": "\/image\/icon\/free\/16.png",
            "24": "\/image\/icon\/free\/24.png",
            "32": "\/image\/icon\/free\/32.png",
            "48": "\/image\/icon\/free\/48.png",
            "64": "\/image\/icon\/free\/64.png",
            "128": "\/image\/icon\/free\/128.png",
            "256": "\/image\/icon\/free\/256.png",
            "512": "\/image\/icon\/free\/512.png"
        },
        "default_title": "Session Switcher & Account Manager"
    },
    "background": {
        "service_worker": "\/background\/sw.dart.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/content_script\/get_local_storage.dart.js"
            ],
            "run_at": "document_start"
        }
    ],
    "offline_enabled": true,
    "manifest_version": 3,
    "homepage_url": "https:\/\/www.kodemuse.dev\/documentation-session-switcher\/"
}