ListenTo
Be a YouTube DJ or listen to other YouTube DJs
What is ListenTo?
ListenTo is a Chrome extension developed by posener, and its main feature is "Be a YouTube DJ or listen to other YouTube DJs".
Extension Screenshots
Download ListenTo Extension CRX File
Download ListenTo extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | hhdebiameojlifkdofogncmkhjadbckj |
Official URL | https://chrome.google.com/webstore/detail/listento/hhdebiameojlifkdofogncmkhjadbckj |
Description | Be a YouTube DJ or listen to other YouTube DJs |
File Size | 149 KB |
Installation Count | 44 |
Current Version | 1.4 |
Last Updated | 2019-02-22 |
Publish Date | 2019-02-22 |
Rating | 5.00/5 Total 1 Ratings |
Developer | posener |
Payment Type | free |
Supported Languages | 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'" } |