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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}