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!はhttps://krose.workによって開発されたChromeの拡張機能で、その主な機能は「Sit up Straight! This extension will help you track your posture as you browse with the help of your webcam.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Posture!Posture!Posture!拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}