PandoRdio

A Thumbs Up in Pandora adds the song to your Rdio Collection.

What is PandoRdio?

PandoRdio is a Chrome extension developed by https://pandordio.herokuapp.com, and its main feature is "A Thumbs Up in Pandora adds the song to your Rdio Collection.".

Extension Screenshots

screenshot
screenshot

Download PandoRdio Extension CRX File

Download PandoRdio extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        When you thumbs up a song in Pandora, the song is added to your Collection in Rdio.

New features:

* Now also adds to a playlist named 'Pandora' in Rdio.                    

Extension Basic Information

Name PandoRdio PandoRdio
ID fiobjnnhnijfdkgdmedcbennfngfnfff
Official URL https://chrome.google.com/webstore/detail/pandordio/fiobjnnhnijfdkgdmedcbennfngfnfff
Description A Thumbs Up in Pandora adds the song to your Rdio Collection.
File Size 75.01 KB
Installation Count 92
Current Version 0.1.0
Last Updated 2015-05-18
Publish Date 2015-05-18
Rating 4.50/5 Total 2 Ratings
Developer https://pandordio.herokuapp.com
Payment Type free
Extension Website https://pandordio.herokuapp.com/
Help Page URL https://github.com/donnierayjones/pandordio-chrome/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PandoRdio",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "A Thumbs Up in Pandora adds the song to your Rdio Collection.",
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        "icon48.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*"
            ],
            "js": [
                "jquery.js",
                "script.js"
            ]
        }
    ]
}