Simple Screen Break
Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.
Qu'est-ce que Simple Screen Break ?
Simple Screen Break est une extension Chrome développée par Solid Code Solutions, et sa fonction principale est "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Simple Screen Break
Téléchargez les fichiers d'extension Simple Screen Break 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
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.
Informations de Base sur l'Extension
Nom | Simple Screen Break |
ID | jckfggaihbloddfjgaodhfjhjegpnalo |
URL Officiel | https://chromewebstore.google.com/detail/simple-screen-break/jckfggaihbloddfjgaodhfjhjegpnalo |
Description | Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear. |
Taille du Fichier | 56.4 KB |
Nombre d'Installations | 35 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2023-02-23 |
Date de Publication | 2023-01-18 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Solid Code Solutions |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.solidcode.solutions/privacy |
Langues Prises en Charge | 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" ] } |