HoofSounds
Listen to pony radio stations 24/7!
什麼是HoofSounds?
HoofSounds是由https://hoofsounds.little.my開發的Chrome擴展程式,該擴展的主要功能是“Listen to pony radio stations 24/7!”。
擴展截圖
下載HoofSounds擴展crx文件
下載HoofSounds擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
HoofSounds lets you listen to a diverse collection of 24/7 pony/brony internet radio, watch brony video streaming and connect them to brony chat. The majority of the radio stations and video streams are provided by various stations in the Ponyville Live! network, while chat is provided by the Canternet IRC network. HoofSounds is available for Google Chrome, Firefox and Opera. Get the Firefox version at https://hoofsounds.little.my Features: - 14 radio stations (variety and genre-specific) - 8 video streams - 9 chat channels - Get the latest stream info, updated every 20 seconds - Get notifications when the song changes - Share songs to Facebook and Twitter View the HoofSounds changelog to see what’s new: https://hoofsounds.little.my/changelog https://hoofsounds.little.my https://www.facebook.com/HoofSounds https://twitter.com/HoofSounds
擴展基本資訊
名稱 | HoofSounds |
ID | pakhjhphleppgakhlffhlfhbekfnobbk |
官方網址 | https://chromewebstore.google.com/detail/hoofsounds/pakhjhphleppgakhlffhlfhbekfnobbk |
簡介 | Listen to pony radio stations 24/7! |
檔案大小 | 338 KB |
安裝次數 | 5,007 |
目前版本 | 1.641 |
更新時間 | 2019-04-05 |
上架時間 | 2019-04-04 |
評分 | 4.82/5 共 375 次評分 |
開發者 | https://hoofsounds.little.my |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://hoofsounds.little.my |
說明頁面URL | https://hoofsounds.little.my/faq.htm |
隱私政策頁面URL | https://ponyhoof.little.my/privacy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HoofSounds", "description": "Listen to pony radio stations 24\/7!", "version": "1.641", "homepage_url": "https:\/\/hoofsounds.little.my", "content_security_policy": "script-src 'self'; object-src 'self'", "background": { "scripts": [ "background.js" ], "persistent": false }, "manifest_version": 2, "minimum_chrome_version": "49.0.0.0", "permissions": [ "http:\/\/*.little.my\/*", "https:\/\/*.little.my\/*", "storage", "unlimitedStorage", "notifications", "clipboardWrite", "contextMenus" ], "content_scripts": [ { "include_globs": [ "https:\/\/hoofsounds.little.my\/*" ], "js": [ "content.js" ], "matches": [ "https:\/\/hoofsounds.little.my\/*" ], "run_at": "document_start", "all_frames": true }, { "include_globs": [ "http:\/\/*.little.my\/*", "https:\/\/*.little.my\/*" ], "js": [ "content.js" ], "matches": [ "http:\/\/*.little.my\/*", "https:\/\/*.little.my\/*" ], "run_at": "document_start" } ], "optional_permissions": [ "background" ], "browser_action": { "default_icon": { "38": "icon38.png" }, "default_title": "HoofSounds", "default_popup": "popup.htm" }, "commands": { "hoofsounds_stopRadio": { "description": "Stop radio" }, "hoofsounds_copyTrackInfo": { "description": "Copy song info" } }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } } |