PandoRdio

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

Co to jest PandoRdio?

PandoRdio to rozszerzenie Chrome opracowane przez https://pandordio.herokuapp.com, a jego główną funkcją jest „A Thumbs Up in Pandora adds the song to your Rdio Collection.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia PandoRdio

Pobierz pliki rozszerzeń PandoRdio w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PandoRdio PandoRdio
ID fiobjnnhnijfdkgdmedcbennfngfnfff
Oficjalny URL https://chrome.google.com/webstore/detail/pandordio/fiobjnnhnijfdkgdmedcbennfngfnfff
Opis A Thumbs Up in Pandora adds the song to your Rdio Collection.
Rozmiar pliku 75.01 KB
Liczba instalacji 92
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2015-05-18
Data Publikacji 2015-05-18
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper https://pandordio.herokuapp.com
Typ Płatności free
Strona Rozszerzenia https://pandordio.herokuapp.com/
Adres URL Strony Pomocy https://github.com/donnierayjones/pandordio-chrome/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}