WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
What is WebNowPlaying?
WebNowPlaying is a Chrome extension developed by rulz-dev-group, and its main feature is "A browser extension that provides information and controls for media playing in the browser to external adapters.".
Extension Screenshots
Download WebNowPlaying Extension CRX File
Download WebNowPlaying 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
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
Extension Basic Information
Name | WebNowPlaying |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
Official URL | 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. |
File Size | 86.93 KB |
Installation Count | 63,288 |
Current Version | 3.0.1 |
Last Updated | 2024-01-04 |
Publish Date | 2019-10-06 |
Rating | 4.53/5 Total 60 Ratings |
Developer | rulz-dev-group |
[email protected] | |
Payment Type | free |
Extension Website | https://wnp.keifufu.dev |
Help Page URL | https://github.com/keifufu/WebNowPlaying/issues |
Supported Languages | 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": [ "*:\/\/*\/*" ] } ] } |