Spotify Friend Activity

View your friends' activity in Spotify's web player.

Spotify Friend Activity क्या है?

Spotify Friend Activity Jack Weatherford द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View your friends' activity in Spotify's web player."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spotify Friend Activity एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    ]
}