Now Playing Notifier for Spotify [unofficial]
Notify the currently playing song on Spotify. This is an unofficial extension.
O que é Now Playing Notifier for Spotify [unofficial]?
Now Playing Notifier for Spotify [unofficial] é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Notify the currently playing song on Spotify. This is an unofficial extension.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Now Playing Notifier for Spotify [unofficial]
Baixe arquivos de extensão Now Playing Notifier for Spotify [unofficial] no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Notify the currently playing song on Spotify (open.spotify.com). **How to Use** 1. Open Spotify on Google Chrome. Then this extension will automatically run. 2. Play some music. 3. A silent notification will apear every time the music switches. **Attention** This extension just fetch song titles from HTML on Spotify, so it doesn't work when Spotify isn't opened on Chrome.
Informações Básicas da Extensão
Nome | Now Playing Notifier for Spotify [unofficial] |
ID | bieocankgankjnlnipolmaecmonaboja |
URL Oficial | https://chromewebstore.google.com/detail/now-playing-notifier-for/bieocankgankjnlnipolmaecmonaboja |
Descrição | Notify the currently playing song on Spotify. This is an unofficial extension. |
Tamanho do Arquivo | 13.54 KB |
Contagem de Instalações | 128 |
Versão Atual | 0.0.1 |
Última Atualização | 2020-03-22 |
Data de Publicação | 2020-03-22 |
Classificação | 1.00/5 Total de 3 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Now Playing Notifier for Spotify [unofficial]", "version": "0.0.1", "manifest_version": 2, "description": "Notify the currently playing song on Spotify. This is an unofficial extension.", "icons": { "16": "icon\/16x16.png", "48": "icon\/48x48.png", "128": "icon\/128x128.png" }, "permissions": [ "notifications" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "js\/pagescript.js" ], "run_at": "document_start" } ] } |