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.
擴展基本資訊
名稱 | Simple Screen Break |
ID | jckfggaihbloddfjgaodhfjhjegpnalo |
官方網址 | 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" ] } |