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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}