WebNowPlaying

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

Apa itu WebNowPlaying?

WebNowPlaying adalah ekstensi Chrome yang dikembangkan oleh rulz-dev-group, dan fitur utamanya adalah "A browser extension that provides information and controls for media playing in the browser to external adapters.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi WebNowPlaying

Unduh file ekstensi WebNowPlaying dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama WebNowPlaying WebNowPlaying
ID jfakgfcdgpghbbefmdfjkbdlibjgnbli
URL Resmi https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli
Deskripsi A browser extension that provides information and controls for media playing in the browser to external adapters.
Ukuran File 86.93 KB
Jumlah Instalasi 63,288
Versi Saat Ini 3.0.1
Terakhir Diperbarui 2024-01-04
Tanggal Publikasi 2019-10-06
Penilaian 4.53/5 Total 60 Penilaian
Pengembang rulz-dev-group
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://wnp.keifufu.dev
URL Halaman Bantuan https://github.com/keifufu/WebNowPlaying/issues
Bahasa yang Didukung 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}