Download Notifications

This extension adds notifications for downloads, when complete or interrupted

Download Notificationsคืออะไร?

Download Notifications เป็นส่วนขยายของ Chrome ที่พัฒนาโดย André Ferreira และคุณลักษณะหลักของมันคือ "This extension adds notifications for downloads, when complete or interrupted"

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

screenshot

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

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

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

                        This opensource extension adds notification popups for downloads.

It does not disable the download shelf. For that I recommend https://chrome.google.com/webstore/detail/download-notifier/gdekiloeocnfnochnkldpkmllmfiaeke

The code is licensed under GPLV3 and available at
https://github.com/aadfPT/ChromeDownloadNotifications                    

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

ชื่อ Download Notifications Download Notifications
ID eeffjbbdjlmldkkhdjdfaamgdmolpjpp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/download-notifications/eeffjbbdjlmldkkhdjdfaamgdmolpjpp
คำอธิบาย This extension adds notifications for downloads, when complete or interrupted
ขนาดไฟล์ 5.26 KB
จำนวนการติดตั้ง 261
เวอร์ชันปัจจุบัน 0.0.0.1
อัปเดตครั้งล่าสุด 2014-07-19
วันที่เผยแพร่ 2014-07-19
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา André Ferreira
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/aadfPT/ChromeDownloadNotifications
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Download Notifications",
    "description": "This extension adds notifications for downloads, when complete or interrupted",
    "version": "0.0.0.1",
    "permissions": [
        "notifications",
        "downloads"
    ],
    "web_accessible_resources": [
        "icon.png"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "main.js",
            "bg.js"
        ]
    }
}