Online Radio

Online Radio

All your favorite radio stations in one extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "version": "1.4.16",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "permissions": [
    "notifications",
    "webRequest",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "icons/38.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://anonym-tsk.github.io/chrome-online-radio/*"
      ],
      "js": [
        "js/proxy.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/hotkey.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/HtmlPlayer.js",
      "js/FlashPlayer.js",
      "js/AudioPlayer.js",
      "js/DataStorage.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "38": "icons/48.png",
    "48": "icons/48.png",
    "128": "icons/icon.png"
  },
  "options_page": "options.html"
}