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.
Τι είναι το Pandora History Saver;
Το Pandora History Saver είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Patrick Griffith, και η κύρια λειτουργία του είναι "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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Pandora History Saver
Λήψη αρχείων επέκτασης Pandora History Saver σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Pandora History Saver |
ID | honopjhbilnaafihhlbhflgecnmegeae |
Επίσημο URL | https://chromewebstore.google.com/detail/pandora-history-saver/honopjhbilnaafihhlbhflgecnmegeae |
Περιγραφή | 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. |
Μέγεθος Αρχείου | 77.75 KB |
Αριθμός Εγκαταστάσεων | 105 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2015-11-20 |
Ημερομηνία Δημοσίευσης | 2015-11-20 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Patrick Griffith |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } |