#NowPlaying for Google Play Music
It's tools to share music playing on Youtube Music to SNS.
Cos'è #NowPlaying for Google Play Music?
#NowPlaying for Google Play Music è un'estensione di Chrome sviluppata da mizdra, e la sua funzione principale è "It's tools to share music playing on Youtube Music to SNS.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione #NowPlaying for Google Play Music
Scarica i file di estensione #NowPlaying for Google Play Music in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
## 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
Informazioni di Base sull'Estensione
Nome | #NowPlaying for Google Play Music |
ID | nhpanomgefidcljmcmkbanhoomaglmlk |
URL Ufficiale | https://chromewebstore.google.com/detail/nowplaying-for-google-pla/nhpanomgefidcljmcmkbanhoomaglmlk |
Descrizione | It's tools to share music playing on Youtube Music to SNS. |
Dimensione del File | 863 KB |
Conteggio Installazioni | 311 |
Versione Corrente | 1.3.0 |
Ultimo Aggiornamento | 2021-06-15 |
Data di Pubblicazione | 2019-12-15 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | mizdra |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://now-playing-for-gpm.mizdra.net |
URL della Pagina di Aiuto | https://github.com/mizdra/now-playing-for-google-play-music |
Lingue Supportate | 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 } |