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
官方網址 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"
    ]
}