Procrastination Alert

Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.

ما هو Procrastination Alert؟

Procrastination Alert هو إضافة Chrome تم تطويرها بواسطة Simon Li، والميزة الرئيسية لها هي "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Procrastination Alert

قم بتنزيل ملفات الامتداد Procrastination Alert بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        We often spend more time mindlessly browsing YouTube, Facebook and Twitter than we want to. This extension shows you gentle reminders on those websites after 25 minutes (or a customized amount of time) to help you get back to work and avoid procrastination.                    

معلومات أساسية عن التمديد

الاسم Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
عنوان URL الرسمي https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
الوصف Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
حجم الملف 14.67 KB
عدد التثبيتات 46
النسخة الحالية 1.0
آخر تحديث 2020-11-25
تاريخ النشر 2020-11-25
تقييم 4.00/5 مجموع تقييمات 1
المطور Simon Li
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Procrastination Alert",
    "version": "1.0",
    "description": "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.",
    "manifest_version": 2,
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-32.png",
        "default_title": "Procrastination Alert",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}