Simple Screen Break
Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.
O que é Simple Screen Break?
Simple Screen Break é uma extensão do Chrome desenvolvida por Solid Code Solutions, e sua principal característica é "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Simple Screen Break
Baixe arquivos de extensão Simple Screen Break no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Simple Screen Break |
ID | jckfggaihbloddfjgaodhfjhjegpnalo |
URL Oficial | https://chromewebstore.google.com/detail/simple-screen-break/jckfggaihbloddfjgaodhfjhjegpnalo |
Descrição | Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear. |
Tamanho do Arquivo | 56.4 KB |
Contagem de Instalações | 35 |
Versão Atual | 0.0.2 |
Última Atualização | 2023-02-23 |
Data de Publicação | 2023-01-18 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Solid Code Solutions |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://www.solidcode.solutions/privacy |
Idiomas Suportados | 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" ] } |