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ファイルをダウンロード
Online Radio拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
} | |