Simple Screen Break
Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.
Cos'è Simple Screen Break?
Simple Screen Break è un'estensione di Chrome sviluppata da Solid Code Solutions, e la sua funzione principale è "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Simple Screen Break
Scarica i file di estensione Simple Screen Break in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Simple Screen Break |
ID | jckfggaihbloddfjgaodhfjhjegpnalo |
URL Ufficiale | https://chromewebstore.google.com/detail/simple-screen-break/jckfggaihbloddfjgaodhfjhjegpnalo |
Descrizione | Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear. |
Dimensione del File | 56.4 KB |
Conteggio Installazioni | 35 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2023-02-23 |
Data di Pubblicazione | 2023-01-18 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Solid Code Solutions |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.solidcode.solutions/privacy |
Lingue Supportate | 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" ] } |