Imprivata OneSign
Provides Single Sign-On for Google Chrome and Microsoft Edge
Imprivata OneSign란 무엇입니까?
Imprivata OneSign은(는) Imprivata, Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides Single Sign-On for Google Chrome and Microsoft Edge"입니다.
확장 프로그램 스크린샷
Imprivata OneSign 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is the Chrome extension that the Imprivata Agent installer automatically downloads from the Chrome Web Store. The Chrome extension communicates with the Imprivata Agent to enable single sign-on for web applications running in the Chrome browser. This extension should not be installed manually.
확장 프로그램 기본 정보
이름 | Imprivata OneSign |
ID | bpgncafocbpieaeigfcookhgmeamglgo |
공식 URL | https://chromewebstore.google.com/detail/imprivata-onesign/bpgncafocbpieaeigfcookhgmeamglgo |
설명 | Provides Single Sign-On for Google Chrome and Microsoft Edge |
파일 크기 | 251 KB |
설치 횟수 | 18,000,000 |
현재 버전 | 1.0.66.5541 |
최근 업데이트 | 2022-11-15 |
출시 날짜 | 2022-11-15 |
평점 | 3.38/5 총 16 개의 평점 |
개발자 | Imprivata, Inc. |
이메일 | [email protected] |
결제 유형 | in_app |
개인정보 보호 정책 페이지 URL | http://www.imprivata.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Imprivata OneSign", "description": "Provides Single Sign-On for Google Chrome and Microsoft Edge", "version": "1.0.66.5541", "icons": { "16": "WindowsAgent_ExtIcon_16x16.png", "48": "WindowsAgent_ExtIcon_48x48.png", "128": "WindowsAgent_ExtIcon_128x128.png" }, "permissions": [ "tabs", "activeTab", "nativeMessaging", "scripting", "webRequest", "webNavigation" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "idp.js", "confirmid.js", "sso_ready.js", "apg.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "capture_page_info.js", "sodium.js", "encryption.js", "trans_defs.js", "content.js", "confirmid_content.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "trans_defs.js", "confirmid_content.js" ], "run_at": "document_start", "all_frames": true } ] } |