Chirp Radio Desktop Notifications

'Now Playing' desktop notifications for the Chirp Radio popup player.

Τι είναι το Chirp Radio Desktop Notifications;

Το Chirp Radio Desktop Notifications είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tyler.l.hsu, και η κύρια λειτουργία του είναι "'Now Playing' desktop notifications for the Chirp Radio popup player.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Chirp Radio Desktop Notifications

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

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

                        3/4/2014 - updated to support Chirp's (yet again) redesigned popup player.

6/5/2012 - updated to support Chirp's redesigned website and popup player.

Do you listen to Chicago's Chirp Radio a lot?  Are you constantly tabbing over to their playlist to find out what you're listening to?  Give this extension a try.

When listening to the station via the web-based popup player, you'll receive small desktop notifications indicating the currently playing artist, track, and album each time the information is updated in the player.

The extension's options page allows you to set how long you'd like notifications to last (the default is ten seconds).

Note: upon opening the player for the first time after installing this extension, your browser may ask you to allow desktop notifications from chirpradio.org.  Be sure to click 'allow'.                    

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

Όνομα Chirp Radio Desktop Notifications Chirp Radio Desktop Notifications
ID gnfgcjkkophmplbgaemojiakaeckidic
Επίσημο URL https://chromewebstore.google.com/detail/chirp-radio-desktop-notif/gnfgcjkkophmplbgaemojiakaeckidic
Περιγραφή 'Now Playing' desktop notifications for the Chirp Radio popup player.
Μέγεθος Αρχείου 70.91 KB
Αριθμός Εγκαταστάσεων 35
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2014-03-06
Ημερομηνία Δημοσίευσης 2014-03-05
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής tyler.l.hsu
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chirp Radio Desktop Notifications",
    "manifest_version": 2,
    "version": "1.1.0",
    "description": "'Now Playing' desktop notifications for the Chirp Radio popup player.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js",
            "default_options.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/chirpradio.org\/",
                "http:\/\/chirpradio.org\/in-browser"
            ],
            "js": [
                "jquery-1.7.1.min.js",
                "content_script.js"
            ]
        }
    ],
    "options_page": "options.html"
}