Securify Identity Plugin

Securify Identity browser extension used for logging into single sign-on applications.

Was ist Securify Identity Plugin?

Securify Identity Plugin ist eine Chrome-Erweiterung, die von https://securifyidentity.com entwickelt wurde, und ihr Hauptmerkmal ist "Securify Identity browser extension used for logging into single sign-on applications.".

Erweiterungsscreenshots

screenshot

Securify Identity Plugin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Securify Identity Plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        SecurifyID provides single sign-on services for their customers using protocols such as SAML and OpenID Connect. To support form-based websites, we also offer a browser extension that automatically fills in credentials saved before for these types of websites. These usernames and passwords are organizational and added by customers using our portal, and they are kept encrypted on our servers. The SecurifyID extension works as follows: 
1) After a user logs in, a list of users' single sign on websites is downloaded and stored. 
2) The user can either open a website through the extension or the SecurifyID portal. 
3) The extension sends a query to the back-end server and requests the user's password for that particular website. 
4) The extension fills in the username and password fields and logs the user in accordingly.                    

Grundlegende Informationen zur Erweiterung

Name Securify Identity Plugin Securify Identity Plugin
ID mojobmhedhllbmbbmfigjkoconcenebn
Offizielle URL https://chromewebstore.google.com/detail/securify-identity-plugin/mojobmhedhllbmbbmfigjkoconcenebn
Beschreibung Securify Identity browser extension used for logging into single sign-on applications.
Dateigröße 2.13 MB
Installationsanzahl 69
Aktuelle Version 0.0.0.3
Letztes Update 2023-11-19
Veröffentlichungsdatum 2022-12-28
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://securifyidentity.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.securifyidentity.com/
Hilfeseite URL https://www.securifyidentity.com/contact
URL der Datenschutzrichtlinien-Seite https://securifyid.com/legal/privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Securify Identity Plugin",
    "description": "Securify Identity browser extension used for logging into single sign-on applications.",
    "version": "0.0.0.3",
    "options_page": "views\/options.html",
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "",
        "http:\/\/*\/"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/lib\/jquery-3.5.1.min.js",
                "js\/lib\/vanillatoasts.js",
                "js\/app\/content.js"
            ],
            "css": [
                "css\/bootstrap-iso.css",
                "css\/bootstrap-customization.css",
                "css\/vanillatoasts.css",
                "css\/multipleaccountselection.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/app\/background.js"
    },
    "action": {
        "default_popup": "views\/popup.html"
    },
    "icons": {
        "128": "images\/logotransparent.png",
        "16": "images\/logotransparent16x16.png",
        "48": "images\/logotransparent48x48.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}