Orange Radio

Orange Radio

Listen Orange Radio from your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Orange Radio",
  "short_name": "Orange Radio",
  "description": "Listen Orange Radio from your browser.",
  "version": "1.0.0",
  "permissions": [
    "https://*.fastcast4u.com/*",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "notifications"
  ],
  "background": {
    "page": "background.html"
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": {
      "16": "assets/images/icon16.png",
      "24": "assets/images/icon24.png",
      "32": "assets/images/icon32.png",
      "48": "assets/images/icon48.png"
    },
    "default_popup": "popup.html",
    "default_title": "Orange Radio"
  },
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "commands": {
    "play-pause-station": {
      "suggested_key": {
        "default": "MediaPlayPause",
        "mac": "MediaPlayPause"
      },
      "description": "Toggle playing the selected station"
    },
    "pause-station": {
      "suggested_key": {
        "default": "MediaStop"
      },
      "description": "Pause the selected station"
    },
    "_execute_browser_action": {
      "suggested_key": "Alt+O"
    }
  },
  "web_accessible_resources": [
    "defaultStream.json",
    "icon48.png",
    "icon48-dark.png",
    "options.html"
  ]
}