Posture!Posture!Posture!
Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.
Cos'è Posture!Posture!Posture!?
Posture!Posture!Posture! è un'estensione di Chrome sviluppata da https://krose.work, e la sua funzione principale è "Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Posture!Posture!Posture!
Scarica i file di estensione Posture!Posture!Posture! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Posture!Posture!Posture! |
ID | ekleaenhplpaiincbdkbebmeccfgmbll |
URL Ufficiale | https://chromewebstore.google.com/detail/posturepostureposture/ekleaenhplpaiincbdkbebmeccfgmbll |
Descrizione | Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam. |
Dimensione del File | 341 KB |
Conteggio Installazioni | 1,372 |
Versione Corrente | 4.2.1 |
Ultimo Aggiornamento | 2021-11-19 |
Data di Pubblicazione | 2021-11-17 |
Valutazione | 4.41/5 Totale 17 Valutazioni |
Sviluppatore | https://krose.work |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/killa-kyle/posture-posture-posture-chrome-extension |
Lingue Supportate | 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" ] } |