Posture Reminder

Reminders to periodically correct your posture.

Qu'est-ce que Posture Reminder ?

Posture Reminder est une extension Chrome développée par https://adamgonen.com, et sa fonction principale est "Reminders to periodically correct your posture.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Posture Reminder

Téléchargez les fichiers d'extension Posture Reminder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Simple and lightweight extension that reminds you at different intervals to correct your posture in order to get into the habit of having a healthy posture while using your computer.

Features:
- Built-in On/Off switch
- Reminders at intervals of 15 minutes, 30 minutes, 1 hour, 2 hours, or random (between 30 minutes and 4 hours).
- Non-obtrusive reminders                    

Informations de Base sur l'Extension

Nom Posture Reminder Posture Reminder
ID kjfkmlhcgelgmepdemdhkgioggaffibj
URL Officiel https://chromewebstore.google.com/detail/posture-reminder/kjfkmlhcgelgmepdemdhkgioggaffibj
Description Reminders to periodically correct your posture.
Taille du Fichier 15.17 KB
Nombre d'Installations 10,981
Version Actuelle 1.2.0
Dernière Mise à Jour 2022-07-02
Date de Publication 2020-03-31
Évaluation 2.79/5 Total 24 Évaluations
Développeur https://adamgonen.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Posture Reminder",
    "version": "1.2.0",
    "manifest_version": 2,
    "author": "Adam Gonen",
    "description": "Reminders to periodically correct your posture.",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "alarms",
        "background",
        "notifications",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "PostureReminder",
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    }
}