Online Radio
All your favorite radio stations in one extension.
Online Radio란 무엇입니까?
Online Radio은(는) https://vasilchuk.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "All your favorite radio stations in one extension."입니다.
확장 프로그램 스크린샷
Online Radio 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Listen to your favorite radio station without leaving the browser. * Extension already contains a list of popular radio stations. The list is constantly growing. * You can add your own radio station. * Add your favorite radio stations to favorites list for quick access. * Hotkeys support * Integration with http://101.ru * Integration with http://tunein.com * Integration with http://radiopotok.ru
확장 프로그램 기본 정보
이름 | Online Radio |
ID | ccjcjodilinmaelnmmombddiaeomcfgc |
공식 URL | https://chromewebstore.google.com/detail/online-radio/ccjcjodilinmaelnmmombddiaeomcfgc |
설명 | All your favorite radio stations in one extension. |
파일 크기 | 159 KB |
설치 횟수 | 10,000 |
현재 버전 | 2.3.2 |
최근 업데이트 | 2024-02-06 |
출시 날짜 | 2018-12-19 |
평점 | 4.26/5 총 340 개의 평점 |
개발자 | https://vasilchuk.net |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Anonym-tsk/chrome-online-radio |
지원되는 언어 | en,fr,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.3.2", "name": "__MSG_name__", "description": "__MSG_description__", "manifest_version": 2, "default_locale": "en", "permissions": [ "webRequest", "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "images\/38.png" ], "content_scripts": [ { "matches": [ "*:\/\/101.ru\/*" ], "js": [ "scripts\/ext\/101.ru.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/tunein.com\/*" ], "js": [ "scripts\/ext\/tunein.com.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/radiopotok.ru\/*" ], "js": [ "scripts\/ext\/radiopotok.ru.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "scripts\/lib\/require.js", "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/19.png", "38": "images\/38.png" }, "default_popup": "popup.html", "default_title": "__MSG_name__" }, "commands": { "playpause": { "suggested_key": { "default": "Ctrl+Shift+8", "mac": "Command+Shift+8" }, "description": "__MSG_playpause__", "global": true }, "prev": { "suggested_key": { "default": "Ctrl+Shift+9", "mac": "Command+Shift+9" }, "description": "__MSG_prev__", "global": true }, "next": { "suggested_key": { "default": "Ctrl+Shift+0", "mac": "Command+Shift+0" }, "description": "__MSG_next__", "global": true }, "volumedown": { "description": "__MSG_volumedown__" }, "volumeup": { "description": "__MSG_volumeup__" } }, "icons": { "16": "images\/16.png", "19": "images\/19.png", "38": "images\/48.png", "48": "images\/48.png", "128": "images\/icon.png" }, "options_page": "options.html" } |