Add Song to Youtube Playlist

Works with Pandora and IHeartRadio only.

Was ist Add Song to Youtube Playlist?

Add Song to Youtube Playlist ist eine Chrome-Erweiterung, die von andyschutzman entwickelt wurde, und ihr Hauptmerkmal ist "Works with Pandora and IHeartRadio only.".

Erweiterungsscreenshots

screenshot

Add Song to Youtube Playlist-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add Song to Youtube Playlist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Add Song to Youtube Playlist Add Song to Youtube Playlist
ID ongallikkmodjflmlkphhpepdbgkcfji
Offizielle URL https://chromewebstore.google.com/detail/add-song-to-youtube-playl/ongallikkmodjflmlkphhpepdbgkcfji
Beschreibung Works with Pandora and IHeartRadio only.
Dateigröße 41.9 KB
Installationsanzahl 54
Aktuelle Version 0.0.0.4
Letztes Update 2013-11-14
Veröffentlichungsdatum 2013-11-14
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler andyschutzman
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}