WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
Qu'est-ce que WebNowPlaying ?
WebNowPlaying est une extension Chrome développée par rulz-dev-group, et sa fonction principale est "A browser extension that provides information and controls for media playing in the browser to external adapters.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WebNowPlaying
Téléchargez les fichiers d'extension WebNowPlaying 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
A browser extension that provides information and controls for media playing in the browser to external adapters. It detects information about the media being played, such as the title, artist, album, and more. This information can be utilized by external adapters to manage the media, including actions like pausing, skipping, adjusting the volume, and more. Documentation and Usage: https://wnp.keifufu.dev Adapters: - Rainmeter - OBS - CLI - Macro Deck 2 - Read the full list on GitHub: https://github.com/keifufu/WebNowPlaying Supports sites like: YouTube, Spotify, Soundcloud, and many others. Read the full list here: https://wnp.keifufu.dev/supported-sites
Informations de Base sur l'Extension
Nom | WebNowPlaying |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
URL Officiel | https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli |
Description | A browser extension that provides information and controls for media playing in the browser to external adapters. |
Taille du Fichier | 86.93 KB |
Nombre d'Installations | 63,288 |
Version Actuelle | 3.0.1 |
Dernière Mise à Jour | 2024-01-04 |
Date de Publication | 2019-10-06 |
Évaluation | 4.53/5 Total 60 Évaluations |
Développeur | rulz-dev-group |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://wnp.keifufu.dev |
URL de la Page d'Aide | https://github.com/keifufu/WebNowPlaying/issues |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "WebNowPlaying", "short_name": "WebNowPlaying", "description": "A browser extension that provides information and controls for media playing in the browser to external adapters.", "version": "3.0.1", "icons": { "128": "icons\/icon-darkmode-128.png", "256": "icons\/icon-darkmode-256.png" }, "action": { "default_popup": "index.html", "default_title": "WebNowPlaying" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": true } ], "background": { "service_worker": "sw.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "injected.js" ], "matches": [ "*:\/\/*\/*" ] } ] } |