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
擴展基本資訊
名稱 | Online Radio |
ID | ccjcjodilinmaelnmmombddiaeomcfgc |
官方網址 | 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" } |