STOP Touching Your Face
This extension sends you a notification when you touch your face to help prevent the spread of bacteria and viruses.
什么是STOP Touching Your Face?
STOP Touching Your Face是由https://www.stoptouchingyourface.tech开发的Chrome扩展程序,该扩展的主要功能是“This extension sends you a notification when you touch your face to help prevent the spread of bacteria and viruses.”。
扩展截图
下载STOP Touching Your Face扩展crx文件
下载STOP Touching Your Face扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
STOP Touching Your Face is an open-source Chrome extension that uses your webcam and tensorflow.js to send you a notification when you touch your face. In doing so, your webcam images are processed locally on your machine and at no time is any information collected or sent externally.
🚀 Features:
🤚 Image classifier to detect if a user is touching their face
🔔 Snooze notification allows you to set a minimum time required before the app can send another notification when touching your face
🔋 Low power mode activates when the webcam is off allowing for notifications to be sent out periodically
🚀 What's Next:
⭐️ Improved image classifier
⭐️ Apple Watch version of STOP Touching Your Face 扩展基本信息
| 名称 | |
| ID | mjfealeghiingkbmjohllkmboaokbcln |
| 官方URL | https://chromewebstore.google.com/detail/stop-touching-your-face/mjfealeghiingkbmjohllkmboaokbcln |
| 简介 | This extension sends you a notification when you touch your face to help prevent the spread of bacteria and viruses. |
| 文件大小 | 2.3 MB |
| 安装次数 | 16 |
| 当前版本 | 1.1.1 |
| 更新时间 | 2020-03-30 |
| 上架时间 | 2020-03-30 |
| 评分 | 4.50/5 共4次评分 |
| 开发者 | https://www.stoptouchingyourface.tech |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://www.stoptouchingyourface.tech/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "STOP Touching Your Face",
"description": "This extension sends you a notification when you touch your face to help prevent the spread of bacteria and viruses.",
"version": "1.1.1",
"browser_action": {
"default_icon": "new-logo.png",
"default_popup": "popup.html"
},
"icons": {
"16": "new-logo.png",
"48": "new-logo.png",
"128": "new-logo.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"persistent": true,
"page": "background.html"
},
"permissions": [
"storage",
"notifications"
]
} | |