CurrentSong

Implements a client to send the current active tab to a local server

CurrentSongとは何ですか?

CurrentSongはNerixyzによって開発されたChromeの拡張機能で、その主な機能は「Implements a client to send the current active tab to a local server」です。

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

screenshot

CurrentSong拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension enables the Current Song Overlay to display information about the currently playing song (for example: YouTube, SoundCloud).                    

拡張機能の基本情報

名前 CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
公式URL https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
説明 Implements a client to send the current active tab to a local server
ファイルサイズ 66.77 KB
インストール数 648
現在のバージョン 0.5.1
最終更新日 2021-04-05
公開日 2020-09-07
評価 5.00/5 合計 1 レビュー
開発者 Nerixyz
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Nerixyz/current-song-overlay
ヘルプページのURL https://github.com/Nerixyz/current-song-overlay/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CurrentSong",
    "version": "0.5.1",
    "description": "Implements a client to send the current active tab to a local server",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-scripts\/trackVideoProgress.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content-scripts\/soundcloud.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.neverthink.tv\/*"
            ],
            "js": [
                "content-scripts\/neverthink.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/mediaSessionProxy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content-scripts\/mediaSessionProxy.inject.js"
    ],
    "permissions": [
        "tabs"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{02914143-ede8-492c-8ad4-8a3af03f75bb}",
            "strict_min_version": "78.0"
        }
    }
}