Download Notifier

You get a desktop notification while your downloading finished.

Τι είναι το Download Notifier;

Το Download Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ehaagwlke, και η κύρια λειτουργία του είναι "You get a desktop notification while your downloading finished.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Download Notifier

Λήψη αρχείων επέκτασης Download Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        It's now open-sourced. 
https://github.com/ehaagwlke/download-notifier

**********

V0.0.5

I get the time to make the 'play a sound when download finished' feature configurable. And you also can decide whether the default download shelf should display or not (though I prefer NOT).

Another change is, there will be more than one notification card displayed.

All things now could be configured via options page.

**********
V0.0.4
Here comes three new things:
1. The "Open" button now can be used
2. While one download finished, it would play a sound (not configurable for now)
3. The icon would be visible even if you are using a pure black theme

and one more thing (might be buggy):
- sometimes Chrome thought the file downloaded would be harmful, once this happened, this extension will prompt to ask for your confirmation, and this will be done on the chrome://downloads page. And, this feature might be buggy, if
you encounter any problem, contact or email me. Thank you.

**********

This extension does two things:

1. Disabled the download shelf. Yes, I personally do not like it. So when I get the change, I just disabled it. You will get a badge while something is downloading. Sorry no progress bar available for now. 

2. Display a desktop notification when your downloading finished, and you could find it by one simple click.

TODO(May be implemented in future, may not):

1. An animated browser action icon which could show the downloading progress

2. A "OPEN" button on the notification card -- depends on whether Google would allow me to do so. [V0.0.4 added]

3. A popup shows all the downloads -- actually it was almost there, if there had not been some annoying bugs.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Download Notifier Download Notifier
ID gdekiloeocnfnochnkldpkmllmfiaeke
Επίσημο URL https://chromewebstore.google.com/detail/download-notifier/gdekiloeocnfnochnkldpkmllmfiaeke
Περιγραφή You get a desktop notification while your downloading finished.
Μέγεθος Αρχείου 1.73 MB
Αριθμός Εγκαταστάσεων 6,885
Τρέχουσα Έκδοση 0.0.5
Τελευταία Ενημέρωση 2016-04-25
Ημερομηνία Δημοσίευσης 2016-04-24
Αξιολόγηση 3.98/5 Συνολικά 118 Αξιολογήσεις
Προγραμματιστής ehaagwlke
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.0.5",
    "description": "__MSG_description__",
    "icons": {
        "19": "img\/icon-19.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "64": "img\/icon-64.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "js\/consts.js",
            "js\/notification.js",
            "js\/download.js",
            "js\/background.js"
        ]
    },
    "default_locale": "en",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-48.png"
        },
        "default_title": "Better Downloader"
    },
    "permissions": [
        "downloads",
        "downloads.open",
        "downloads.shelf",
        "notifications",
        "tabs",
        "management",
        "storage"
    ],
    "options_page": "view\/options_old.html",
    "options_ui": {
        "page": "view\/options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "minimum_chrome_version": "40"
}