WebNowPlaying

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

Co je WebNowPlaying?

WebNowPlaying je rozšíření Chrome vyvinuté rulz-dev-group, a jeho hlavní funkcí je „A browser extension that provides information and controls for media playing in the browser to external adapters.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření WebNowPlaying

Stáhněte si soubory rozšíření WebNowPlaying ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název WebNowPlaying WebNowPlaying
ID jfakgfcdgpghbbefmdfjkbdlibjgnbli
Oficiální URL https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli
Popis A browser extension that provides information and controls for media playing in the browser to external adapters.
Velikost souboru 86.93 KB
Počet instalací 63,288
Aktuální Verze 3.0.1
Poslední Aktualizace 2024-01-04
Datum Vydání 2019-10-06
Hodnocení 4.53/5 Celkem 60 Hodnocení
Vývojář rulz-dev-group
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://wnp.keifufu.dev
URL Stránky Nápovědy https://github.com/keifufu/WebNowPlaying/issues
Podporované Jazyky 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}