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
电子邮箱 [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"
        }
    }
}