CurrentSong

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

What is CurrentSong?

CurrentSong is a Chrome extension developed by Nerixyz, and its main feature is "Implements a client to send the current active tab to a local server".

Extension Screenshots

screenshot

Download CurrentSong Extension CRX File

Download CurrentSong 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 Current Song Overlay to display information about the currently playing song (for example: YouTube, SoundCloud).                    

Extension Basic Information

Name CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
Official URL https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Description Implements a client to send the current active tab to a local server
File Size 66.77 KB
Installation Count 648
Current Version 0.5.1
Last Updated 2021-04-05
Publish Date 2020-09-07
Rating 5.00/5 Total 1 Ratings
Developer Nerixyz
Email [email protected]
Payment Type free
Extension Website https://github.com/Nerixyz/current-song-overlay
Help Page URL https://github.com/Nerixyz/current-song-overlay/issues
Supported Languages 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"
        }
    }
}