Pandora History

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

Cos'è Pandora History?

Pandora History è un'estensione di Chrome sviluppata da David McNavish, e la sua funzione principale è "Keep track of the Pandora songs that you have listened to.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pandora History

Scarica i file di estensione Pandora History in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome Pandora History Pandora History
ID cbodjnhecijlkbaimepgidkppmgankei
URL Ufficiale https://chromewebstore.google.com/detail/pandora-history/cbodjnhecijlkbaimepgidkppmgankei
Descrizione Keep track of the Pandora songs that you have listened to.
Dimensione del File 23.01 KB
Conteggio Installazioni 283
Versione Corrente 1.2
Ultimo Aggiornamento 2013-02-19
Data di Pubblicazione 2013-02-19
Valutazione 4.60/5 Totale 5 Valutazioni
Sviluppatore David McNavish
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}