Task Reminder

Task Reminder will remind you when todo item is reaching

Task Reminderคืออะไร?

Task Reminder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://gocvuikhoe.com และคุณลักษณะหลักของมันคือ "Task Reminder will remind you when todo item is reaching"

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

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

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

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

                        When you are working or doing something, you might forget to do your task at a time.
I also have this situation, so I create Task Reminder which help you guys to remember your tasks.
All you need to do is create tasks, schedule a time to alert.
Choosing option:
- Notify me before (Minutes): It's minutes to notify before schedule time reaching.
- Audio: By default, audio is checked. When task alert, an audio will play, so you can be notified by both chrome screen and sound. If you uncheck it, only an message on your chrome browser is shown.

There is a Task Reminder Pro version, you can find it at https://chrome.google.com/webstore/detail/task-reminder-pro/epcpaphigkhpgikodinkplkkkhlcmkhc

This is beta version, so there might be issue. Feel free to leave me an email to [email protected] if you get any trouble.                    

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

ชื่อ Task Reminder Task Reminder
ID ipjimmmnkomjealkapggimnlcjpllnpk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/task-reminder/ipjimmmnkomjealkapggimnlcjpllnpk
คำอธิบาย Task Reminder will remind you when todo item is reaching
ขนาดไฟล์ 783 KB
จำนวนการติดตั้ง 302
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2016-04-28
วันที่เผยแพร่ 2016-04-28
คะแนน 2.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา http://gocvuikhoe.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "name": "Task Reminder",
    "browser_action": {
        "default_icon": "images\/reminder-128.png",
        "default_popup": "html\/popup.html",
        "default_title": "Task Reminder"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "html\/background.html"
    },
    "description": "Task Reminder will remind you when todo item is reaching",
    "icons": {
        "128": "images\/reminder-128.png",
        "64": "images\/reminder-64.png",
        "24": "images\/reminder-24.png",
        "16": "images\/reminder-16.png"
    },
    "web_accessible_resources": [
        "html\/images\/close.png",
        "html\/audio\/sweet_electro.mp3"
    ],
    "manifest_version": 2,
    "options_page": "html\/options.html",
    "permissions": [
        "",
        "contextMenus",
        "tabs",
        "webRequest",
        "webNavigation",
        "unlimitedStorage",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.0.3"
}