Spotify Friend Activity

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

什麼是Spotify Friend Activity?

Spotify Friend Activity是由Jack Weatherford開發的Chrome擴展程式,該擴展的主要功能是“View your friends' activity in Spotify's web player.”。

擴展截圖

screenshot
screenshot

下載Spotify Friend Activity擴展crx文件

下載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 Spotify Friend Activity
ID amlnlcdighbhfciijpnofbpphfnkmeaa
官方網址 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"
    ]
}