#NowPlaying for Google Play Music
It's tools to share music playing on Youtube Music to SNS.
Hvad er #NowPlaying for Google Play Music?
#NowPlaying for Google Play Music er en Chrome-udvidelse udviklet af mizdra, og dens hovedfunktion er "It's tools to share music playing on Youtube Music to SNS.".
Udvidelsesskærmbilleder
Download #NowPlaying for Google Play Music-udvidelses-CRX-fil
Download #NowPlaying for Google Play Music-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
## 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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nhpanomgefidcljmcmkbanhoomaglmlk |
| Officiel URL | https://chromewebstore.google.com/detail/nowplaying-for-google-pla/nhpanomgefidcljmcmkbanhoomaglmlk |
| Beskrivelse | It's tools to share music playing on Youtube Music to SNS. |
| Filstørrelse | 863 KB |
| Antal Installationer | 311 |
| Nuværende Version | 1.3.0 |
| Senest Opdateret | 2021-06-15 |
| Udgivelsesdato | 2019-12-15 |
| Bedømmelse | 5.00/5 Samlet 5 Bedømmelser |
| Udvikler | mizdra |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://now-playing-for-gpm.mizdra.net |
| Hjælpeside-URL | https://github.com/mizdra/now-playing-for-google-play-music |
| Understøttede Sprog | 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
} | |