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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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"
    ]
}