WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
Was ist WebNowPlaying?
WebNowPlaying ist eine Chrome-Erweiterung, die von rulz-dev-group entwickelt wurde, und ihr Hauptmerkmal ist "A browser extension that provides information and controls for media playing in the browser to external adapters.".
Erweiterungsscreenshots
WebNowPlaying-Erweiterungs-CRX-Datei herunterladen
Laden Sie WebNowPlaying-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | WebNowPlaying |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
Offizielle URL | https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli |
Beschreibung | A browser extension that provides information and controls for media playing in the browser to external adapters. |
Dateigröße | 86.93 KB |
Installationsanzahl | 63,288 |
Aktuelle Version | 3.0.1 |
Letztes Update | 2024-01-04 |
Veröffentlichungsdatum | 2019-10-06 |
Bewertung | 4.53/5 Insgesamt 60 Bewertungen |
Entwickler | rulz-dev-group |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://wnp.keifufu.dev |
Hilfeseite URL | https://github.com/keifufu/WebNowPlaying/issues |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } ] } |