Posture!Posture!Posture!

Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.

Qu'est-ce que Posture!Posture!Posture! ?

Posture!Posture!Posture! est une extension Chrome développée par https://krose.work, et sa fonction principale est "Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Posture!Posture!Posture!

Téléchargez les fichiers d'extension Posture!Posture!Posture! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Posture!Posture!Posture! Posture!Posture!Posture!
ID ekleaenhplpaiincbdkbebmeccfgmbll
URL Officiel https://chromewebstore.google.com/detail/posturepostureposture/ekleaenhplpaiincbdkbebmeccfgmbll
Description Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.
Taille du Fichier 341 KB
Nombre d'Installations 1,372
Version Actuelle 4.2.1
Dernière Mise à Jour 2021-11-19
Date de Publication 2021-11-17
Évaluation 4.41/5 Total 17 Évaluations
Développeur https://krose.work
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/killa-kyle/posture-posture-posture-chrome-extension
Langues Prises en Charge 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"
    ]
}