Compact Identity
Signle Sign On for web and desktop applications.
什么是Compact Identity?
Compact Identity是由https://www.ilantus.com开发的Chrome扩展程序,该扩展的主要功能是“Signle Sign On for web and desktop applications.”。
扩展截图
下载Compact Identity扩展crx文件
下载Compact Identity扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | pmfnlmoidamimomaimiiekbdjcacdamp |
| 官方URL | https://chromewebstore.google.com/detail/compact-identity/pmfnlmoidamimomaimiiekbdjcacdamp |
| 简介 | Signle Sign On for web and desktop applications. |
| 文件大小 | 85.74 KB |
| 安装次数 | 10,000 |
| 当前版本 | 9.1 |
| 更新时间 | 2021-04-30 |
| 上架时间 | 2019-12-26 |
| 开发者 | https://www.ilantus.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.ilantus.com/ |
| 帮助页面URL | https://productsupport.ilantus.com |
| 隐私政策页面URL | https://www.ilantus.com/privacy-policy |
| 支持的语言 | 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'"
} | |