Pandora History

Keep track of the Pandora songs that you have listened to.

What is Pandora History?

Pandora History is a Chrome extension developed by David McNavish, and its main feature is "Keep track of the Pandora songs that you have listened to.".

Extension Screenshots

screenshot

Download Pandora History Extension CRX File

Download Pandora History 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

                                            

Extension Basic Information

Name Pandora History Pandora History
ID cbodjnhecijlkbaimepgidkppmgankei
Official URL https://chromewebstore.google.com/detail/pandora-history/cbodjnhecijlkbaimepgidkppmgankei
Description Keep track of the Pandora songs that you have listened to.
File Size 23.01 KB
Installation Count 283
Current Version 1.2
Last Updated 2013-02-19
Publish Date 2013-02-19
Rating 4.60/5 Total 5 Ratings
Developer David McNavish
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pandora History",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Keep track of the Pandora songs that you have listened to.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*",
                "https:\/\/www.pandora.com\/*"
            ],
            "js": [
                "songProcessor.js"
            ],
            "run_at": "document_end"
        }
    ]
}