Pandora History

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

Wat is Pandora History?

Pandora History is een Chrome-extensie ontwikkeld door David McNavish, en de belangrijkste functie is "Keep track of the Pandora songs that you have listened to.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Pandora History

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

                                            

Basisinformatie over de Extensie

Naam Pandora History Pandora History
ID cbodjnhecijlkbaimepgidkppmgankei
Officiële URL https://chromewebstore.google.com/detail/pandora-history/cbodjnhecijlkbaimepgidkppmgankei
Beschrijving Keep track of the Pandora songs that you have listened to.
Bestandsgrootte 23.01 KB
Aantal Installaties 283
Huidige Versie 1.2
Laatst Bijgewerkt 2013-02-19
Publicatiedatum 2013-02-19
Beoordeling 4.60/5 Totaal 5 Beoordelingen
Ontwikkelaar David McNavish
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}