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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    ]
}