Simple Screen Break
Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.
Что такое Simple Screen Break?
Simple Screen Break - это расширение Chrome, разработанное Solid Code Solutions, и его основная функция - "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.".
Снимки экрана расширения
Скачать файл CRX расширения Simple Screen Break
Скачайте файлы расширений Simple Screen Break в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Simple Screen Break |
ID | jckfggaihbloddfjgaodhfjhjegpnalo |
Официальный URL | https://chromewebstore.google.com/detail/simple-screen-break/jckfggaihbloddfjgaodhfjhjegpnalo |
Описание | Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear. |
Размер файла | 56.4 KB |
Количество установок | 35 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2023-02-23 |
Дата публикации | 2023-01-18 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | Solid Code Solutions |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://www.solidcode.solutions/privacy |
Поддерживаемые языки | 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" ] } |