Simple Screen Break
Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.
Was ist Simple Screen Break?
Simple Screen Break ist eine Chrome-Erweiterung, die von Solid Code Solutions entwickelt wurde, und ihr Hauptmerkmal ist "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.".
Erweiterungsscreenshots
Simple Screen Break-Erweiterungs-CRX-Datei herunterladen
Laden Sie Simple Screen Break-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Displays a simple alert reminding you to take a screen break. You can choose how often the notification appears from one of the following options: every 5, 10, 15, 20, 25, 30, 45 or 60 minutes. Simple Screen Break is simple (as it's name suggests!) and easy-to-use.
Grundlegende Informationen zur Erweiterung
Name | Simple Screen Break |
ID | jckfggaihbloddfjgaodhfjhjegpnalo |
Offizielle URL | https://chromewebstore.google.com/detail/simple-screen-break/jckfggaihbloddfjgaodhfjhjegpnalo |
Beschreibung | Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear. |
Dateigröße | 56.4 KB |
Installationsanzahl | 35 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2023-02-23 |
Veröffentlichungsdatum | 2023-01-18 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Solid Code Solutions |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.solidcode.solutions/privacy |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Simple Screen Break", "version": "0.0.2", "description": "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.", "icons": { "16": "\/img\/logo_16.png", "32": "\/img\/logo_32.png", "48": "\/img\/logo_48.png", "128": "\/img\/logo_128.png" }, "action": { "default_title": "Simple Screen Break Popup", "default_popup": "index.html" }, "background": { "service_worker": "background\/background.js", "type": "module" }, "content_scripts": [ { "js": [ "content\/main.js" ], "css": [ "content\/main.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "alarms", "storage" ] } |