ListenTo

Be a YouTube DJ or listen to other YouTube DJs

Cos'è ListenTo?

ListenTo è un'estensione di Chrome sviluppata da posener, e la sua funzione principale è "Be a YouTube DJ or listen to other YouTube DJs".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ListenTo

Scarica i file di estensione ListenTo in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This is an extension to https://youtube.com.
This extension enables two modes:

Be a DJ: Play you favorite YouTube clips, and enable others listen to a your music while you are playing it.
Be a listener: Listen to a live DJ while he is playing YouTube songs.                    

Informazioni di Base sull'Estensione

Nome ListenTo ListenTo
ID hhdebiameojlifkdofogncmkhjadbckj
URL Ufficiale https://chrome.google.com/webstore/detail/listento/hhdebiameojlifkdofogncmkhjadbckj
Descrizione Be a YouTube DJ or listen to other YouTube DJs
Dimensione del File 149 KB
Conteggio Installazioni 44
Versione Corrente 1.4
Ultimo Aggiornamento 2019-02-22
Data di Pubblicazione 2019-02-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore posener
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ListenTo",
    "version": "1.4",
    "description": "Be a YouTube DJ or listen to other YouTube DJs",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/yt-radio-on-128.png"
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs",
        "activeTab",
        "https:\/\/*.listen-2.herokuapp.com\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}