Chirp Radio Desktop Notifications
'Now Playing' desktop notifications for the Chirp Radio popup player.
Chirp Radio Desktop Notifications क्या है?
Chirp Radio Desktop Notifications tyler.l.hsu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "'Now Playing' desktop notifications for the Chirp Radio popup player."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chirp Radio Desktop Notifications एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } |