ListenTo
Be a YouTube DJ or listen to other YouTube DJs
Что такое ListenTo?
ListenTo - это расширение Chrome, разработанное posener, и его основная функция - "Be a YouTube DJ or listen to other YouTube DJs".
Снимки экрана расширения
Скачать файл CRX расширения ListenTo
Скачайте файлы расширений ListenTo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | hhdebiameojlifkdofogncmkhjadbckj |
Официальный URL | https://chrome.google.com/webstore/detail/listento/hhdebiameojlifkdofogncmkhjadbckj |
Описание | Be a YouTube DJ or listen to other YouTube DJs |
Размер файла | 149 KB |
Количество установок | 44 |
Текущая Версия | 1.4 |
Последнее Обновление | 2019-02-22 |
Дата публикации | 2019-02-22 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | posener |
Тип оплаты | free |
Поддерживаемые языки | 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'" } |