Pandora History
Keep track of the Pandora songs that you have listened to.
Qu'est-ce que Pandora History ?
Pandora History est une extension Chrome développée par David McNavish, et sa fonction principale est "Keep track of the Pandora songs that you have listened to.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pandora History
Téléchargez les fichiers d'extension Pandora History au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Informations de Base sur l'Extension
Nom | Pandora History |
ID | cbodjnhecijlkbaimepgidkppmgankei |
URL Officiel | https://chromewebstore.google.com/detail/pandora-history/cbodjnhecijlkbaimepgidkppmgankei |
Description | Keep track of the Pandora songs that you have listened to. |
Taille du Fichier | 23.01 KB |
Nombre d'Installations | 283 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2013-02-19 |
Date de Publication | 2013-02-19 |
Évaluation | 4.60/5 Total 5 Évaluations |
Développeur | David McNavish |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |