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! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://krose.work, και η κύρια λειτουργία του είναι "Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Posture!Posture!Posture!

Λήψη αρχείων επέκτασης 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! Posture!Posture!Posture!
ID ekleaenhplpaiincbdkbebmeccfgmbll
Επίσημο URL 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"
    ]
}