Sit Better

Simple chrome extension that reminds you to sit better

ما هو Sit Better؟

Sit Better هو إضافة Chrome تم تطويرها بواسطة jaqcreates، والميزة الرئيسية لها هي "Simple chrome extension that reminds you to sit better".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Sit Better

قم بتنزيل ملفات الامتداد Sit Better بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        A minimalistic and configurable posture reminder extension to help you sit better during long periods of time.

This is a super simple and easy to use extension that will simply nudge you to keep an upright posture from time to time. Feature so far include:

** Enable/Disable **
Easily turn the extension on/off at your convenience

** Set interval time **
Set your ideal interval time in between notifications 

**  Popup Sound **
Play a little tone when reminding you so you can rely on audio queues

Here is the github repository. Please feel free to submit issues/feature requests and contribute :)
https://github.com/meko-deng/sit-better-extension                    

معلومات أساسية عن التمديد

الاسم Sit Better Sit Better
ID cjmbgnnmlpndinjopbcanojmelbelpcp
عنوان URL الرسمي https://chromewebstore.google.com/detail/sit-better/cjmbgnnmlpndinjopbcanojmelbelpcp
الوصف Simple chrome extension that reminds you to sit better
حجم الملف 87.61 KB
عدد التثبيتات 135
النسخة الحالية 0.1.3
آخر تحديث 2020-04-22
تاريخ النشر 2020-04-22
تقييم 5.00/5 مجموع تقييمات 3
المطور jaqcreates
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sit Better",
    "version": "0.1.3",
    "description": "Simple chrome extension that reminds you to sit better",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "notifications",
        "alarms",
        "storage"
    ],
    "background": {
        "scripts": [
            "\/js\/background.js"
        ],
        "persistent": true
    },
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Sit Straight Event",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "16.png",
            "48": "48.png",
            "128": "128.png"
        }
    },
    "web_accessible_resources": [
        "128.png"
    ]
}