Notify

Checks for unread messages from various sites.

Notifyคืออะไร?

Notify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gregory และคุณลักษณะหลักของมันคือ "Checks for unread messages from various sites."

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

screenshot
screenshot

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

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

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

                        Notify checks popular sites for new messages.

This extension will save you
--------------------------------
Time - From no longer needing to constantly check various tabs for updates.
--------------------------------
Computer Resources - Rather than having the tabs open to be alerted to new messages, these resources can now be freed up. That means less memory usage, and less processing power, which means longer battery life.
--------------------------------
Focus - You can now stay focused on other things and be alerted only when your attention is needed.

Sites Currently Supported
--------------------------------
Facebook
Google Mail
Google Voice

This extension is completely open source as well. Feel free to download and play around with, modify, or contribute to this project. Find it here: https://github.com/isGregory/Notify                    

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

ชื่อ Notify Notify
ID melaljjgehbcjeljebdngoohjobhleko
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/notify/melaljjgehbcjeljebdngoohjobhleko
คำอธิบาย Checks for unread messages from various sites.
ขนาดไฟล์ 12.05 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2015-06-21
วันที่เผยแพร่ 2015-06-20
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Gregory
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notify",
    "description": "Checks for unread messages from various sites.",
    "version": "1.0.4",
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Notify"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "alarms",
        "https:\/\/www.facebook.com\/",
        "https:\/\/mail.google.com\/mail\/feed\/*",
        "https:\/\/www.google.com\/voice\/request\/*",
        "http:\/\/google.com\/voice\/request\/*"
    ]
}