WebNowPlaying

A browser extension that provides information and controls for media playing in the browser to external adapters.

Vad är WebNowPlaying?

WebNowPlaying är en Chrome-tillägg utvecklad av rulz-dev-group, och dess huvudfunktion är "A browser extension that provides information and controls for media playing in the browser to external adapters.".

Tilläggsskärmbilder

screenshot

Ladda ner WebNowPlaying-förlängningens CRX-fil

Ladda ner WebNowPlaying-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn WebNowPlaying WebNowPlaying
ID jfakgfcdgpghbbefmdfjkbdlibjgnbli
Officiell webbadress https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli
Beskrivning A browser extension that provides information and controls for media playing in the browser to external adapters.
Filstorlek 86.93 KB
Antal Installationer 63,288
Aktuell Version 3.0.1
Senast Uppdaterad 2024-01-04
Publiceringsdatum 2019-10-06
Betyg 4.53/5 Totalt 60 Betyg
Utvecklare rulz-dev-group
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://wnp.keifufu.dev
Hjälpsida URL https://github.com/keifufu/WebNowPlaying/issues
Stödda Språk 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}