WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
WebNowPlayingとは何ですか?
WebNowPlayingはrulz-dev-groupによって開発されたChromeの拡張機能で、その主な機能は「A browser extension that provides information and controls for media playing in the browser to external adapters.」です。
拡張機能のスクリーンショット
WebNowPlaying拡張機能のCRXファイルをダウンロード
WebNowPlaying拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | WebNowPlaying |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
公式URL | https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli |
説明 | A browser extension that provides information and controls for media playing in the browser to external adapters. |
ファイルサイズ | 86.93 KB |
インストール数 | 63,288 |
現在のバージョン | 3.0.1 |
最終更新日 | 2024-01-04 |
公開日 | 2019-10-06 |
評価 | 4.53/5 合計 60 レビュー |
開発者 | rulz-dev-group |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://wnp.keifufu.dev |
ヘルプページのURL | https://github.com/keifufu/WebNowPlaying/issues |
対応言語 | 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": [ "*:\/\/*\/*" ] } ] } |