#NowPlaying for Google Play Music
It's tools to share music playing on Youtube Music to SNS.
Was ist #NowPlaying for Google Play Music?
#NowPlaying for Google Play Music ist eine Chrome-Erweiterung, die von mizdra entwickelt wurde, und ihr Hauptmerkmal ist "It's tools to share music playing on Youtube Music to SNS.".
Erweiterungsscreenshots
#NowPlaying for Google Play Music-Erweiterungs-CRX-Datei herunterladen
Laden Sie #NowPlaying for Google Play Music-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
## 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
Grundlegende Informationen zur Erweiterung
Name | #NowPlaying for Google Play Music |
ID | nhpanomgefidcljmcmkbanhoomaglmlk |
Offizielle URL | https://chromewebstore.google.com/detail/nowplaying-for-google-pla/nhpanomgefidcljmcmkbanhoomaglmlk |
Beschreibung | It's tools to share music playing on Youtube Music to SNS. |
Dateigröße | 863 KB |
Installationsanzahl | 311 |
Aktuelle Version | 1.3.0 |
Letztes Update | 2021-06-15 |
Veröffentlichungsdatum | 2019-12-15 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | mizdra |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://now-playing-for-gpm.mizdra.net |
Hilfeseite URL | https://github.com/mizdra/now-playing-for-google-play-music |
Unterstützte Sprachen | 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 } |