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" ] } |