NowPlaying.Site Extension

Implements a client to send the current active tab to the nowplaying widget

NowPlaying.Site Extensionとは何ですか?

NowPlaying.Site ExtensionはNowPlayingによって開発されたChromeの拡張機能で、その主な機能は「Implements a client to send the current active tab to the nowplaying widget」です。

拡張機能のスクリーンショット

screenshot

NowPlaying.Site Extension拡張機能のCRXファイルをダウンロード

NowPlaying.Site Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension enables the widget to display information about the currently playing song 
(for example: YouTube, SoundCloud or a twitch stream). 
This extension only works if your have an account on: https://nowplaying.site/
There is a full guide on how to use the extension in our discord: https://discord.gg/HPFnWk48RT                    

拡張機能の基本情報

名前 NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
公式URL https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
説明 Implements a client to send the current active tab to the nowplaying widget
ファイルサイズ 76.61 KB
インストール数 1,790
現在のバージョン 1.0.1
最終更新日 2023-11-22
公開日 2021-08-16
評価 1.00/5 合計 2 レビュー
開発者 NowPlaying
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://nowplaying.site/
ヘルプページのURL https://discord.gg/c6586qD2Mk
プライバシーポリシーページのURL https://nowplaying.site/privacy-policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NowPlaying.Site Extension",
    "version": "1.0.1",
    "description": "Implements a client to send the current active tab to the nowplaying widget",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options\/options.html",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-scripts\/trackVideoProgress.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content-scripts\/soundcloud.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/mediaSessionProxy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content-scripts\/mediaSessionProxy.inject.js"
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}