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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | 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" ] } |