ListenTo

Be a YouTube DJ or listen to other YouTube DJs

ListenTo là gì?

ListenTo là một tiện ích mở rộng Chrome được phát triển bởi posener, và tính năng chính của nó là "Be a YouTube DJ or listen to other YouTube DJs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ListenTo

Tải xuống các tệp mở rộng ListenTo dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ListenTo ListenTo
ID hhdebiameojlifkdofogncmkhjadbckj
URL Chính Thức https://chrome.google.com/webstore/detail/listento/hhdebiameojlifkdofogncmkhjadbckj
Mô tả Be a YouTube DJ or listen to other YouTube DJs
Kích Thước Tệp 149 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2019-02-22
Ngày Phát Hành 2019-02-22
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển posener
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}