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.
Was ist Pandora History Saver?
Pandora History Saver ist eine Chrome-Erweiterung, die von Patrick Griffith entwickelt wurde, und ihr Hauptmerkmal ist "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.".
Erweiterungsscreenshots
Pandora History Saver-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pandora History Saver-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
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.
Grundlegende Informationen zur Erweiterung
Name | Pandora History Saver |
ID | honopjhbilnaafihhlbhflgecnmegeae |
Offizielle URL | https://chromewebstore.google.com/detail/pandora-history-saver/honopjhbilnaafihhlbhflgecnmegeae |
Beschreibung | 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. |
Dateigröße | 77.75 KB |
Installationsanzahl | 105 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2015-11-20 |
Veröffentlichungsdatum | 2015-11-20 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | Patrick Griffith |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |