Anesidora

Anesidora

An in-browser internet radio client with no ads, unlimited skips, and song downloads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "background": {
    "page": "background.htm"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "images/anesidora-128.png",
    "default_popup": "popup.htm"
  },
  "description": "Tabs? Where we're listening, we don't need tabs.",
  "icons": {
    "16": "images/anesidora-16.png",
    "48": "images/anesidora-48.png",
    "128": "images/anesidora-128.png"
  },
  "name": "Anesidora",
  "omnibox": {
    "keyword": "radio"
  },
  "homepage_url": "http://github.com/pvrs12/anesidora",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*.pandora.com/*",
    "https://*.pandora.com/*",
    "http://*.p-cdn.com/*",
    "http://*.p-cdn.us/*"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "commands": {
    "pause_play": {
      "description": "Play/Pause the current song"
    },
    "skip_song": {
      "description": "Skip to the next song"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Space"
      }
    }
  },
  "version": "2.2.3",
  "options_ui": {
    "page": "options.htm",
    "browser_style": true
  }
}