Pandora Media Session Support
Shows media session information from Pandora Radio.
What is Pandora Media Session Support?
Pandora Media Session Support is a Chrome extension developed by snaphat, and its main feature is "Shows media session information from Pandora Radio.".
Extension Screenshots
Download Pandora Media Session Support Extension CRX File
Download Pandora Media Session Support extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Show the current playing Pandora Radio song in the media session On-Screen-Display on supported systems. - Tested in Windows11, Windows 10, and Ubuntu. - Supports play, pause, previous song, next song, and replay song. This extension collects no data and is not affiliated with Pandora. Entire source code available under MIT licensing here: https://github.com/snaphat/pandora_media_session https://github.com/snaphat/pandora_media_session_packager
Extension Basic Information
Name | Pandora Media Session Support |
ID | odjlgdgkahiehepabfdddaapbdficekj |
Official URL | https://chromewebstore.google.com/detail/pandora-media-session-sup/odjlgdgkahiehepabfdddaapbdficekj |
Description | Shows media session information from Pandora Radio. |
File Size | 26.35 KB |
Installation Count | 47 |
Current Version | 0.5.0 |
Last Updated | 2023-12-16 |
Publish Date | 2021-04-07 |
Rating | 5.00/5 Total 2 Ratings |
Developer | snaphat |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/snaphat |
Help Page URL | https://github.com/snaphat |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Aaron Landwehr", "manifest_version": 3, "name": "Pandora Media Session Support", "version": "0.5.0", "description": "Shows media session information from Pandora Radio.", "minimum_chrome_version": "88.0.0.0", "content_scripts": [ { "matches": [ "*:\/\/*.pandora.com\/*" ], "js": [ "pandora_media_session.user.js" ], "run_at": "document_start" } ], "icons": { "64": "assets\/pandora_64x64.png", "128": "assets\/pandora_128x128.png" }, "action": { "default_title": "Pandora Media Session Support", "default_icon": "assets\/pandora_64x64.png" }, "host_permissions": [ "*:\/\/*.pandora.com\/*" ] } |