Spotify Friend Activity
View your friends' activity in Spotify's web player.
O que é Spotify Friend Activity?
Spotify Friend Activity é uma extensão do Chrome desenvolvida por Jack Weatherford, e sua principal característica é "View your friends' activity in Spotify's web player.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Spotify Friend Activity
Baixe arquivos de extensão Spotify Friend Activity 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
This extension adds a panel to Spotify's web player that displays your friends' listening activity. Setup: 1. Add Spotify Friend Activity to your Chrome browser. 2. Open a new tab and navigate to https://open.spotify.com/ 3. Login with your Spotify account. 4. Make sure: - You are following the Spotify users that you want to see the activity of. - Your friends have the "Share my listening activity on Spotify" setting enabled in the Spotify desktop app. - Your friends have listened to music on the desktop app sometime in the last week. 5. If the issue persists, please report it here: https://bit.ly/sfa-report Request new features for the extension here: https://bit.ly/sfa-feature
Informações Básicas da Extensão
Nome | Spotify Friend Activity |
ID | amlnlcdighbhfciijpnofbpphfnkmeaa |
URL Oficial | https://chromewebstore.google.com/detail/spotify-friend-activity/amlnlcdighbhfciijpnofbpphfnkmeaa |
Descrição | View your friends' activity in Spotify's web player. |
Tamanho do Arquivo | 110 KB |
Contagem de Instalações | 5,917 |
Versão Atual | 1.0.19 |
Última Atualização | 2024-02-11 |
Data de Publicação | 2022-01-24 |
Classificação | 4.78/5 Total de 27 Avaliações |
Desenvolvedor | Jack Weatherford |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jackweatherford/spotify-friend-activity#readme |
URL da Página de Ajuda | https://github.com/jackweatherford/spotify-friend-activity/issues/new?assignees=jackweatherford&labels=bug&template=bug_report.md&title=%5BBUG%5D |
URL da Página de Política de Privacidade | https://jackweatherford.github.io/privacy |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Spotify Friend Activity", "version": "1.0.19", "action": { "default_icon": { "16": "images\/sfa16.png", "24": "images\/sfa24.png", "32": "images\/sfa32.png" }, "default_title": "Spotify Friend Activity", "default_popup": "popup.html" }, "description": "View your friends' activity in Spotify's web player.", "icons": { "16": "images\/sfa16.png", "48": "images\/sfa48.png", "128": "images\/sfa128.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "index.js" ] } ], "host_permissions": [ "https:\/\/open.spotify.com\/*" ], "permissions": [ "storage" ] } |