ListenTo
Be a YouTube DJ or listen to other YouTube DJs
Vad är ListenTo?
ListenTo är en Chrome-tillägg utvecklad av posener, och dess huvudfunktion är "Be a YouTube DJ or listen to other YouTube DJs".
Tilläggsskärmbilder
Ladda ner ListenTo-förlängningens CRX-fil
Ladda ner ListenTo-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | hhdebiameojlifkdofogncmkhjadbckj |
Officiell webbadress | https://chrome.google.com/webstore/detail/listento/hhdebiameojlifkdofogncmkhjadbckj |
Beskrivning | Be a YouTube DJ or listen to other YouTube DJs |
Filstorlek | 149 KB |
Antal Installationer | 44 |
Aktuell Version | 1.4 |
Senast Uppdaterad | 2019-02-22 |
Publiceringsdatum | 2019-02-22 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | posener |
Betalningssätt | free |
Stödda Språk | 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'" } |