ListenTo

Be a YouTube DJ or listen to other YouTube DJs

什麼是ListenTo?

ListenTo是由posener開發的Chrome擴展程式,該擴展的主要功能是“Be a YouTube DJ or listen to other YouTube DJs”。

擴展截圖

screenshot

下載ListenTo擴展crx文件

下載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.                    

擴展基本資訊

名稱 ListenTo ListenTo
ID hhdebiameojlifkdofogncmkhjadbckj
官方網址 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'"
}