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是由Solid Code Solutions开发的Chrome扩展程序,该扩展的主要功能是“Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.”。
扩展截图
下载Simple Screen Break扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |