Pandora History Saver
Records your history across all stations. Click on the song name to hear it on Youtube. You can export the history to a text file.
Qu'est-ce que Pandora History Saver ?
Pandora History Saver est une extension Chrome développée par Patrick Griffith, et sa fonction principale est "Records your history across all stations. Click on the song name to hear it on Youtube. You can export the history to a text file.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pandora History Saver
Téléchargez les fichiers d'extension Pandora History Saver 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
Records your history across all stations. It labels the songs you skipped. Click on the song name to hear it on Youtube. Allows you to remove items from your history and then export the history to a text file.
Informations de Base sur l'Extension
Nom | Pandora History Saver |
ID | honopjhbilnaafihhlbhflgecnmegeae |
URL Officiel | https://chromewebstore.google.com/detail/pandora-history-saver/honopjhbilnaafihhlbhflgecnmegeae |
Description | Records your history across all stations. Click on the song name to hear it on Youtube. You can export the history to a text file. |
Taille du Fichier | 77.75 KB |
Nombre d'Installations | 105 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2015-11-20 |
Date de Publication | 2015-11-20 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | Patrick Griffith |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pandora History Saver", "description": "Records your history across all stations. Click on the song name to hear it on Youtube. You can export the history to a text file.", "version": "1.0.2", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "persistent": true, "scripts": [ "model.js", "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.pandora.com\/*" ], "js": [ "model.js", "content_script.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "browser_action": { "default_title": "Pandora History Saver", "default_icon": "icons\/icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ] } |