ListenTo

Be a YouTube DJ or listen to other YouTube DJs

Apa itu ListenTo?

ListenTo adalah ekstensi Chrome yang dikembangkan oleh posener, dan fitur utamanya adalah "Be a YouTube DJ or listen to other YouTube DJs".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ListenTo

Unduh file ekstensi ListenTo dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ListenTo ListenTo
ID hhdebiameojlifkdofogncmkhjadbckj
URL Resmi https://chrome.google.com/webstore/detail/listento/hhdebiameojlifkdofogncmkhjadbckj
Deskripsi Be a YouTube DJ or listen to other YouTube DJs
Ukuran File 149 KB
Jumlah Instalasi 44
Versi Saat Ini 1.4
Terakhir Diperbarui 2019-02-22
Tanggal Publikasi 2019-02-22
Penilaian 5.00/5 Total 1 Penilaian
Pengembang posener
Tipe Pembayaran free
Bahasa yang Didukung 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'"
}