Posture!Posture!Posture!

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

Vad är Posture!Posture!Posture!?

Posture!Posture!Posture! är en Chrome-tillägg utvecklad av https://krose.work, och dess huvudfunktion är "Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Posture!Posture!Posture!-förlängningens CRX-fil

Ladda ner Posture!Posture!Posture!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Posture!Posture!Posture! Posture!Posture!Posture!
ID ekleaenhplpaiincbdkbebmeccfgmbll
Officiell webbadress https://chromewebstore.google.com/detail/posturepostureposture/ekleaenhplpaiincbdkbebmeccfgmbll
Beskrivning Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.
Filstorlek 341 KB
Antal Installationer 1,372
Aktuell Version 4.2.1
Senast Uppdaterad 2021-11-19
Publiceringsdatum 2021-11-17
Betyg 4.41/5 Totalt 17 Betyg
Utvecklare https://krose.work
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/killa-kyle/posture-posture-posture-chrome-extension
Stödda Språk 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"
    ]
}