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."입니다.
확장 프로그램 스크린샷
Spotify Friend Activity 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } |