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.」です。
拡張機能のスクリーンショット
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).
拡張機能の基本情報
名前 | |
ID | hkkhehaonffoeecpfdlnmofodcllilnl |
公式URL | 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) |
Eメール | [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" ] } |