PandoRdio

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

Vad är PandoRdio?

PandoRdio är en Chrome-tillägg utvecklad av https://pandordio.herokuapp.com, och dess huvudfunktion är "A Thumbs Up in Pandora adds the song to your Rdio Collection.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner PandoRdio-förlängningens CRX-fil

Ladda ner PandoRdio-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn PandoRdio PandoRdio
ID fiobjnnhnijfdkgdmedcbennfngfnfff
Officiell webbadress https://chrome.google.com/webstore/detail/pandordio/fiobjnnhnijfdkgdmedcbennfngfnfff
Beskrivning A Thumbs Up in Pandora adds the song to your Rdio Collection.
Filstorlek 75.01 KB
Antal Installationer 92
Aktuell Version 0.1.0
Senast Uppdaterad 2015-05-18
Publiceringsdatum 2015-05-18
Betyg 4.50/5 Totalt 2 Betyg
Utvecklare https://pandordio.herokuapp.com
Betalningssätt free
Tilläggswebbplats https://pandordio.herokuapp.com/
Hjälpsida URL https://github.com/donnierayjones/pandordio-chrome/issues
Stödda Språk 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"
            ]
        }
    ]
}