Pandora Media Session Support
Shows media session information from Pandora Radio.
Qu'est-ce que Pandora Media Session Support ?
Pandora Media Session Support est une extension Chrome développée par snaphat, et sa fonction principale est "Shows media session information from Pandora Radio.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pandora Media Session Support
Téléchargez les fichiers d'extension Pandora Media Session Support au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Pandora Media Session Support |
ID | odjlgdgkahiehepabfdddaapbdficekj |
URL Officiel | https://chromewebstore.google.com/detail/pandora-media-session-sup/odjlgdgkahiehepabfdddaapbdficekj |
Description | Shows media session information from Pandora Radio. |
Taille du Fichier | 26.35 KB |
Nombre d'Installations | 47 |
Version Actuelle | 0.5.0 |
Dernière Mise à Jour | 2023-12-16 |
Date de Publication | 2021-04-07 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | snaphat |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/snaphat |
URL de la Page d'Aide | https://github.com/snaphat |
Langues Prises en Charge | 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\/*" ] } |