CurrentSong

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

¿Qué es CurrentSong?

CurrentSong es una extensión de Chrome desarrollada por Nerixyz, y su función principal es "Implements a client to send the current active tab to a local server".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión CurrentSong

Descarga archivos de extensión CurrentSong en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
URL Oficial https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Descripción Implements a client to send the current active tab to a local server
Tamaño del Archivo 66.77 KB
Cantidad de Instalaciones 648
Versión Actual 0.5.1
Última Actualización 2021-04-05
Fecha de Publicación 2020-09-07
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Nerixyz
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Nerixyz/current-song-overlay
URL de la Página de Ayuda https://github.com/Nerixyz/current-song-overlay/issues
Idiomas Soportados 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"
        }
    }
}