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開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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" ] } |