Compact Identity

Signle Sign On for web and desktop applications.

Co to jest Compact Identity?

Compact Identity to rozszerzenie Chrome opracowane przez https://www.ilantus.com, a jego główną funkcją jest „Signle Sign On for web and desktop applications.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Compact Identity

Pobierz pliki rozszerzeń Compact Identity 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

                        Google Chrome browser extension of Compact Identity.

This extension is required for any web based application that is extension based. Compact Identity extension will perform a credential replay activity to ensure seamless access to enterprise applications from Compact Identity Launchpad.                    

Podstawowe informacje o rozszerzeniu

Nazwa Compact Identity Compact Identity
ID pmfnlmoidamimomaimiiekbdjcacdamp
Oficjalny URL https://chromewebstore.google.com/detail/compact-identity/pmfnlmoidamimomaimiiekbdjcacdamp
Opis Signle Sign On for web and desktop applications.
Rozmiar pliku 85.74 KB
Liczba instalacji 10,000
Aktualna Wersja 9.1
Ostatnia Aktualizacja 2021-04-30
Data Publikacji 2019-12-26
Deweloper https://www.ilantus.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.ilantus.com/
Adres URL Strony Pomocy https://productsupport.ilantus.com
Adres URL Strony Polityki Prywatności https://www.ilantus.com/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Compact Identity",
    "description": "Signle Sign On for web and desktop applications.",
    "version": "9.1",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "popup.js",
                "crypto-js.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "favicon128.png",
        "16": "favicon16.png",
        "32": "favicon32.png",
        "48": "favicon48.png"
    },
    "web_accessible_resources": [
        "icon.png"
    ],
    "browser_action": {
        "default_title": "Compact Identity",
        "default_icon": "icon.png",
        "default_popup": "background.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}