Posture!Posture!Posture!
Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.
什麼是Posture!Posture!Posture!?
Posture!Posture!Posture!是由https://krose.work開發的Chrome擴展程式,該擴展的主要功能是“Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.”。
擴展截圖
下載Posture!Posture!Posture!擴展crx文件
下載Posture!Posture!Posture!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension helps you keep track of your posture as you surf the web by first taking a baseline of you sitting with good posture, and then applying a 'blur' effect when you start to deviate from your recorded "good posture" position. As soon as you sit back up, the blur goes away and you're back to browsing! CHANGELOG: v.4.2.1 - Added camera status indicator to Browser Action Icon. Now you can tell when posture tracking is on or off easily.
擴展基本資訊
名稱 | Posture!Posture!Posture! |
ID | ekleaenhplpaiincbdkbebmeccfgmbll |
官方網址 | https://chromewebstore.google.com/detail/posturepostureposture/ekleaenhplpaiincbdkbebmeccfgmbll |
簡介 | Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam. |
檔案大小 | 341 KB |
安裝次數 | 1,372 |
目前版本 | 4.2.1 |
更新時間 | 2021-11-19 |
上架時間 | 2021-11-17 |
評分 | 4.41/5 共 17 次評分 |
開發者 | https://krose.work |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/killa-kyle/posture-posture-posture-chrome-extension |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.", "version": "4.2.1", "manifest_version": 2, "name": "Posture!Posture!Posture!", "options_page": "options.html", "background": { "scripts": [ "background.bundle.js" ] }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ] } |