Spotify Friend Activity
View your friends' activity in Spotify's web player.
Τι είναι το Spotify Friend Activity;
Το Spotify Friend Activity είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jack Weatherford, και η κύρια λειτουργία του είναι "View your friends' activity in Spotify's web player.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Spotify Friend Activity
Λήψη αρχείων επέκτασης Spotify Friend Activity σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Spotify Friend Activity |
ID | amlnlcdighbhfciijpnofbpphfnkmeaa |
Επίσημο URL | https://chromewebstore.google.com/detail/spotify-friend-activity/amlnlcdighbhfciijpnofbpphfnkmeaa |
Περιγραφή | View your friends' activity in Spotify's web player. |
Μέγεθος Αρχείου | 110 KB |
Αριθμός Εγκαταστάσεων | 5,917 |
Τρέχουσα Έκδοση | 1.0.19 |
Τελευταία Ενημέρωση | 2024-02-11 |
Ημερομηνία Δημοσίευσης | 2022-01-24 |
Αξιολόγηση | 4.78/5 Συνολικά 27 Αξιολογήσεις |
Προγραμματιστής | Jack Weatherford |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/jackweatherford/spotify-friend-activity#readme |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/jackweatherford/spotify-friend-activity/issues/new?assignees=jackweatherford&labels=bug&template=bug_report.md&title=%5BBUG%5D |
URL της Σελίδας Πολιτικής Απορρήτου | https://jackweatherford.github.io/privacy |
Υποστηριζόμενες Γλώσσες | 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" ] } |