Pandora History
Keep track of the Pandora songs that you have listened to.
Was ist Pandora History?
Pandora History ist eine Chrome-Erweiterung, die von David McNavish entwickelt wurde, und ihr Hauptmerkmal ist "Keep track of the Pandora songs that you have listened to.".
Erweiterungsscreenshots
Pandora History-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pandora History-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
Name | Pandora History |
ID | cbodjnhecijlkbaimepgidkppmgankei |
Offizielle URL | https://chromewebstore.google.com/detail/pandora-history/cbodjnhecijlkbaimepgidkppmgankei |
Beschreibung | Keep track of the Pandora songs that you have listened to. |
Dateigröße | 23.01 KB |
Installationsanzahl | 283 |
Aktuelle Version | 1.2 |
Letztes Update | 2013-02-19 |
Veröffentlichungsdatum | 2013-02-19 |
Bewertung | 4.60/5 Insgesamt 5 Bewertungen |
Entwickler | David McNavish |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |