ListenTo
Be a YouTube DJ or listen to other YouTube DJs
Co to jest ListenTo?
ListenTo to rozszerzenie Chrome opracowane przez posener, a jego główną funkcją jest „Be a YouTube DJ or listen to other YouTube DJs”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ListenTo
Pobierz pliki rozszerzeń ListenTo w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | hhdebiameojlifkdofogncmkhjadbckj |
Oficjalny URL | https://chrome.google.com/webstore/detail/listento/hhdebiameojlifkdofogncmkhjadbckj |
Opis | Be a YouTube DJ or listen to other YouTube DJs |
Rozmiar pliku | 149 KB |
Liczba instalacji | 44 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2019-02-22 |
Data Publikacji | 2019-02-22 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | posener |
Typ Płatności | free |
Obsługiwane Języki | 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'" } |