WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
Hvad er WebNowPlaying?
WebNowPlaying er en Chrome-udvidelse udviklet af rulz-dev-group, og dens hovedfunktion er "A browser extension that provides information and controls for media playing in the browser to external adapters.".
Udvidelsesskærmbilleder
Download WebNowPlaying-udvidelses-CRX-fil
Download WebNowPlaying-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
| Officiel URL | https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli |
| Beskrivelse | A browser extension that provides information and controls for media playing in the browser to external adapters. |
| Filstørrelse | 86.93 KB |
| Antal Installationer | 63,288 |
| Nuværende Version | 3.0.1 |
| Senest Opdateret | 2024-01-04 |
| Udgivelsesdato | 2019-10-06 |
| Bedømmelse | 4.53/5 Samlet 60 Bedømmelser |
| Udvikler | rulz-dev-group |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://wnp.keifufu.dev |
| Hjælpeside-URL | https://github.com/keifufu/WebNowPlaying/issues |
| Understøttede Sprog | 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": [
"*:\/\/*\/*"
]
}
]
} | |