PandoraList

This extension creates a playlist off of Pandora.

Wat is PandoraList?

PandoraList is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension creates a playlist off of Pandora.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie PandoraList

Download PandoraList-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Creates a list of all the songs you listened to on Pandora. 

Coming Features:
-Copy button only copies table
-Static list header
-Cleaner GUI
-More...                    

Basisinformatie over de Extensie

Naam PandoraList PandoraList
ID chhebofcjflcmkijapgaanihbliikfba
Officiële URL https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba
Beschrijving This extension creates a playlist off of Pandora.
Bestandsgrootte 94.46 KB
Aantal Installaties 122
Huidige Versie 0.0.1
Laatst Bijgewerkt 2013-08-11
Publicatiedatum 2013-08-11
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PandoraList",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension creates a playlist off of Pandora.",
    "icons": {
        "16": "png\/icon16.png",
        "48": "png\/icon48.png",
        "128": "png\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/html\/index.html",
    "page_action": {
        "default_icon": "png\/icon19.png",
        "default_title": "PandoraList",
        "default_popup": "src\/html\/page_action.html"
    },
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*"
            ],
            "js": [
                "src\/js\/jquery-2.0.3.js",
                "src\/js\/pandora.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/js\/jquery-2.0.3.min.map"
    ]
}