CurrentSong

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

Wat is CurrentSong?

CurrentSong is een Chrome-extensie ontwikkeld door Nerixyz, en de belangrijkste functie is "Implements a client to send the current active tab to a local server".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CurrentSong

Download CurrentSong-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension enables the Current Song Overlay to display information about the currently playing song (for example: YouTube, SoundCloud).                    

Basisinformatie over de Extensie

Naam CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
Officiële URL https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Beschrijving Implements a client to send the current active tab to a local server
Bestandsgrootte 66.77 KB
Aantal Installaties 648
Huidige Versie 0.5.1
Laatst Bijgewerkt 2021-04-05
Publicatiedatum 2020-09-07
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Nerixyz
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Nerixyz/current-song-overlay
Help Pagina-URL https://github.com/Nerixyz/current-song-overlay/issues
Ondersteunde Talen 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"
        }
    }
}