Add Song to Youtube Playlist

Works with Pandora and IHeartRadio only.

Co to jest Add Song to Youtube Playlist?

Add Song to Youtube Playlist to rozszerzenie Chrome opracowane przez andyschutzman, a jego główną funkcją jest „Works with Pandora and IHeartRadio only.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Add Song to Youtube Playlist

Pobierz pliki rozszerzeń Add Song to Youtube Playlist 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

                        Add songs from IHeart and Pandora to a Youtube playlist.  Also create and delete your playlists.  Double click on the song image to listen to it on repeat.  Just look for the "Playlist" (Add to selected playlist) and "Config" buttons.

*There will be a pop-up the first time to authenticate
*Playlist has to be created before it can be selected
*My first plugin so don't expect gold, just made it for fun                    

Podstawowe informacje o rozszerzeniu

Nazwa Add Song to Youtube Playlist Add Song to Youtube Playlist
ID ongallikkmodjflmlkphhpepdbgkcfji
Oficjalny URL https://chromewebstore.google.com/detail/add-song-to-youtube-playl/ongallikkmodjflmlkphhpepdbgkcfji
Opis Works with Pandora and IHeartRadio only.
Rozmiar pliku 41.9 KB
Liczba instalacji 54
Aktualna Wersja 0.0.0.4
Ostatnia Aktualizacja 2013-11-14
Data Publikacji 2013-11-14
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper andyschutzman
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Add Song to Youtube Playlist",
    "description": "Works with Pandora and IHeartRadio only.",
    "version": "0.0.0.4",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/gdata.youtube.com\/*",
        "https:\/\/www.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pandora.com\/*",
                "*:\/\/*.iheart.com\/*"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "playlist.js"
            ],
            "run_at": "document_end"
        }
    ]
}