Add Song to Youtube Playlist

Works with Pandora and IHeartRadio only.

Vad är Add Song to Youtube Playlist?

Add Song to Youtube Playlist är en Chrome-tillägg utvecklad av andyschutzman, och dess huvudfunktion är "Works with Pandora and IHeartRadio only.".

Tilläggsskärmbilder

screenshot

Ladda ner Add Song to Youtube Playlist-förlängningens CRX-fil

Ladda ner Add Song to Youtube Playlist-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

                        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                    

Grundläggande Information om Tillägg

Namn Add Song to Youtube Playlist Add Song to Youtube Playlist
ID ongallikkmodjflmlkphhpepdbgkcfji
Officiell webbadress https://chromewebstore.google.com/detail/add-song-to-youtube-playl/ongallikkmodjflmlkphhpepdbgkcfji
Beskrivning Works with Pandora and IHeartRadio only.
Filstorlek 41.9 KB
Antal Installationer 54
Aktuell Version 0.0.0.4
Senast Uppdaterad 2013-11-14
Publiceringsdatum 2013-11-14
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare andyschutzman
Betalningssätt free
Stödda Språk 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"
        }
    ]
}