Idle reminder

Gives user notification after a certain maount of time idle.

Idle reminderคืออะไร?

Idle reminder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matthew Perlick และคุณลักษณะหลักของมันคือ "Gives user notification after a certain maount of time idle."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Idle reminder

ดาวน์โหลดไฟล์ส่วนขยาย Idle reminder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension sends you a reminder notification after you've been inactive for a certain amount of time. You can set this time by clicking the Idle Reminder icon in your chrome toolbar. 

This extension is intended for people who wan't to stay on task while working. It can also be helpful for remote workers that will appear as 'inactive' or 'idle' to their employer and coworkers after a certain amount of time away from the computer.

This extension does not collect any user data, is incredibly lightweight, and completely open source. All source files available on github here: https://github.com/perlick/inactivity-reminder.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Idle reminder Idle reminder
ID mkboaajngkkeoeoamcbcngficggmlloj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/idle-reminder/mkboaajngkkeoeoamcbcngficggmlloj
คำอธิบาย Gives user notification after a certain maount of time idle.
ขนาดไฟล์ 13.32 KB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-04-07
วันที่เผยแพร่ 2020-04-07
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Matthew Perlick
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Idle reminder",
    "description": "Gives user notification after a certain maount of time idle.",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "notifications",
        "storage",
        "idle"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Idle Reminder",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "drink_water16.png",
        "32": "drink_water32.png",
        "48": "drink_water48.png",
        "128": "drink_water128.png"
    }
}