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