PandoraList

This extension creates a playlist off of Pandora.

What is PandoraList?

PandoraList is a Chrome extension developed by Unknown, and its main feature is "This extension creates a playlist off of Pandora.".

Extension Screenshots

screenshot

Download PandoraList Extension CRX File

Download PandoraList extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name PandoraList PandoraList
ID chhebofcjflcmkijapgaanihbliikfba
Official URL https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba
Description This extension creates a playlist off of Pandora.
File Size 94.46 KB
Installation Count 122
Current Version 0.0.1
Last Updated 2013-08-11
Publish Date 2013-08-11
Rating 3.67/5 Total 3 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
    ]
}