Pandora Player

A more integrated way of enjoying pandora.

Was ist Pandora Player?

Pandora Player ist eine Chrome-Erweiterung, die von WebMech entwickelt wurde, und ihr Hauptmerkmal ist "A more integrated way of enjoying pandora.".

Erweiterungsscreenshots

screenshot

Pandora Player-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pandora Player-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

                        Pandora Player is a neat little widget that lets you control and listen to Pandora from your browser. It includes everything you need to listen to and enjoy Pandora without the need to have the yet another extra tab open.

Features: 
- Play, Pause, Like, Skip your Pandora songs.
- Switch Playlists                    

Grundlegende Informationen zur Erweiterung

Name Pandora Player Pandora Player
ID pdkmfpaepcjiffojdgagnbdhebkojmib
Offizielle URL https://chrome.google.com/webstore/detail/pandora-player/pdkmfpaepcjiffojdgagnbdhebkojmib
Beschreibung A more integrated way of enjoying pandora.
Dateigröße 173 KB
Installationsanzahl 492
Aktuelle Version 1.2.3
Letztes Update 2014-08-03
Veröffentlichungsdatum 2014-08-03
Bewertung 3.00/5 Insgesamt 3 Bewertungen
Entwickler WebMech
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pandora Player",
    "description": "A more integrated way of enjoying pandora.",
    "version": "1.2.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/*.pandora.com\/*",
        "webNavigation",
        "tabs",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/pandora.com; object-src 'self' https:\/\/pandora.com",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pandora.com\/",
                "*:\/\/*.pandora.com\/account\/sign-in",
                "*:\/\/*.pandora.com\/station\/play\/*"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/app\/pandora.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "index.html"
    }
}