Cipafilter Direct Authenticator
Automatically authenticate with Cipafilter
什么是Cipafilter Direct Authenticator?
Cipafilter Direct Authenticator是由cipafilter-chrome-store-developers开发的Chrome扩展程序,该扩展的主要功能是“Automatically authenticate with Cipafilter”。
扩展截图
下载Cipafilter Direct Authenticator扩展crx文件
下载Cipafilter Direct Authenticator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Seamlessly integrate your Chromebooks with your Cipafilter to take advantage of our world class context based content filtering. The Cipafilter Direct Authenticator was created to provide a hassle free and effective single sign-on solution that is easy to deploy.
Requirements:
- Cipafilter firmware version 12 and above
- Google OAuth set as an authentication source 扩展基本信息
| 名称 | |
| ID | ebknnihoedejfnnjeckfifeojelocbll |
| 官方URL | https://chromewebstore.google.com/detail/cipafilter-direct-authent/ebknnihoedejfnnjeckfifeojelocbll |
| 简介 | Automatically authenticate with Cipafilter |
| 文件大小 | 279 KB |
| 安装次数 | 50,000 |
| 当前版本 | 0.1.7 |
| 更新时间 | 2023-03-31 |
| 上架时间 | 2020-06-19 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | cipafilter-chrome-store-developers |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.cipafilter.com |
| 帮助页面URL | https://support.cipafilter.com |
| 隐私政策页面URL | https://www.familyzone.com/legal |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Cipafilter Direct Authenticator",
"description": "Automatically authenticate with Cipafilter",
"version": "0.1.7",
"host_permissions": [
"*:\/\/*\/*"
],
"permissions": [
"alarms",
"background",
"identity",
"identity.email",
"proxy",
"storage",
"tabs",
"activeTab",
"webRequest",
"webRequestBlocking",
"scripting"
],
"icons": {
"16": "gfx\/lockicon16.png",
"48": "gfx\/lockicon48.png",
"128": "gfx\/lockicon128.png"
},
"action": {
"default_title": "Triple click for debug"
},
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"js\/content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
]
} | |