Now Playing Pop-up for YouTube™

Shows pop-up with every new song YouTube plays.

什麼是Now Playing Pop-up for YouTube™?

Now Playing Pop-up for YouTube™是由Yuya Tanaka (ypresto)開發的Chrome擴展程式,該擴展的主要功能是“Shows pop-up with every new song YouTube plays.”。

擴展截圖

screenshot

下載Now Playing Pop-up for YouTube™擴展crx文件

下載Now Playing Pop-up for YouTube™擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Notifies YouTube video title at every playback, like some music players (ex. Winamp or iTunes).                    

擴展基本資訊

名稱 Now Playing Pop-up for YouTube™ Now Playing Pop-up for YouTube™
ID hkkhehaonffoeecpfdlnmofodcllilnl
官方網址 https://chrome.google.com/webstore/detail/now-playing-pop-up-for-yo/hkkhehaonffoeecpfdlnmofodcllilnl
簡介 Shows pop-up with every new song YouTube plays.
檔案大小 19.93 KB
安裝次數 203
目前版本 2.1
更新時間 2016-10-04
上架時間 2016-10-04
評分 2.71/5 共 7 次評分
開發者 Yuya Tanaka (ypresto)
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ypresto
支援的語言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Now Playing Pop-up for YouTube\u2122",
    "version": "2.1",
    "description": "Shows pop-up with every new song YouTube plays.",
    "author": "Yuya Tanaka",
    "default_locale": "en",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/watch?*",
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "notifications"
    ]
}