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 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 फ़ाइल डाउनलोड करें
crx प्रारूप में Pandora History Saver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |