Online Radio
All your favorite radio stations in one extension.
Online Radio क्या है?
Online Radio https://vasilchuk.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "All your favorite radio stations in one extension."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Online Radio एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |