Securify Identity Plugin

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

Securify Identity Plugin란 무엇입니까?

Securify Identity Plugin은(는) https://securifyidentity.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Securify Identity browser extension used for logging into single sign-on applications."입니다.

확장 프로그램 스크린샷

screenshot

Securify Identity Plugin 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Securify Identity Plugin Securify Identity Plugin
ID mojobmhedhllbmbbmfigjkoconcenebn
공식 URL https://chromewebstore.google.com/detail/securify-identity-plugin/mojobmhedhllbmbbmfigjkoconcenebn
설명 Securify Identity browser extension used for logging into single sign-on applications.
파일 크기 2.13 MB
설치 횟수 69
현재 버전 0.0.0.3
최근 업데이트 2023-11-19
출시 날짜 2022-12-28
평점 5.00/5 총 2 개의 평점
개발자 https://securifyidentity.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.securifyidentity.com/
도움말 페이지 URL https://www.securifyidentity.com/contact
개인정보 보호 정책 페이지 URL https://securifyid.com/legal/privacy-policy
지원되는 언어 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:\/\/*\/*"
            ]
        }
    ]
}