NowPlaying.Site Extension

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

What is NowPlaying.Site Extension?

NowPlaying.Site Extension is a Chrome extension developed by NowPlaying, and its main feature is "Implements a client to send the current active tab to the nowplaying widget".

Extension Screenshots

screenshot

Download NowPlaying.Site Extension Extension CRX File

Download NowPlaying.Site Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
Official URL https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Description Implements a client to send the current active tab to the nowplaying widget
File Size 76.61 KB
Installation Count 1,790
Current Version 1.0.1
Last Updated 2023-11-22
Publish Date 2021-08-16
Rating 1.00/5 Total 2 Ratings
Developer NowPlaying
Email [email protected]
Payment Type free
Extension Website https://nowplaying.site/
Help Page URL https://discord.gg/c6586qD2Mk
Privacy Policy Page URL https://nowplaying.site/privacy-policy
Supported Languages 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"
    ]
}