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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "'Now Playing' desktop notifications for the Chirp Radio popup player."입니다.
확장 프로그램 스크린샷
Chirp Radio Desktop Notifications 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } |