PandoraList

This extension creates a playlist off of Pandora.

Qu'est-ce que PandoraList ?

PandoraList est une extension Chrome développée par Unknown, et sa fonction principale est "This extension creates a playlist off of Pandora.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension PandoraList

Téléchargez les fichiers d'extension PandoraList au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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...                    

Informations de Base sur l'Extension

Nom PandoraList PandoraList
ID chhebofcjflcmkijapgaanihbliikfba
URL Officiel https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba
Description This extension creates a playlist off of Pandora.
Taille du Fichier 94.46 KB
Nombre d'Installations 122
Version Actuelle 0.0.1
Dernière Mise à Jour 2013-08-11
Date de Publication 2013-08-11
Évaluation 3.67/5 Total 3 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    ]
}