#NowPlaying for Google Play Music
It's tools to share music playing on Youtube Music to SNS.
什么是#NowPlaying for Google Play Music?
#NowPlaying for Google Play Music是由mizdra开发的Chrome扩展程序,该扩展的主要功能是“It's tools to share music playing on Youtube Music to SNS.”。
扩展截图
下载#NowPlaying for Google Play Music扩展crx文件
下载#NowPlaying for Google Play Music扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
## Features
- Share your music to Twitter
- Support Youtube Music
- Customizable template with variable
- ${title}: The title of music
- ${artist}: The artist name of music
- ${album}: The album name of music
- Support mobile platform
## Change Log
- see https://github.com/mizdra/now-playing-for-google-play-music/blob/master/CHANGELOG.md 扩展基本信息
| 名称 | |
| ID | nhpanomgefidcljmcmkbanhoomaglmlk |
| 官方URL | https://chromewebstore.google.com/detail/nowplaying-for-google-pla/nhpanomgefidcljmcmkbanhoomaglmlk |
| 简介 | It's tools to share music playing on Youtube Music to SNS. |
| 文件大小 | 863 KB |
| 安装次数 | 311 |
| 当前版本 | 1.3.0 |
| 更新时间 | 2021-06-15 |
| 上架时间 | 2019-12-15 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | mizdra |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://now-playing-for-gpm.mizdra.net |
| 帮助页面URL | https://github.com/mizdra/now-playing-for-google-play-music |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "#NowPlaying for Google Play Music",
"version": "1.3.0",
"description": "It's tools to share music playing on Youtube Music to SNS.",
"short_name": "#NowPlaying",
"author": "mizdra",
"homepage_url": "https:\/\/now-playing-for-gpm.mizdra.net",
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/music.youtube.com\/*"
],
"run_at": "document_idle",
"js": [
".\/pages\/ytm\/content.js"
]
}
],
"options_ui": {
"page": ".\/pages\/options.html",
"open_in_tab": true
},
"icons": {
"48": "img\/logo-48.png",
"96": "img\/logo-96.png",
"128": "img\/logo-128.png"
},
"manifest_version": 2
} | |