Set Discord Activity
Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
Set Discord Activity란 무엇입니까?
Set Discord Activity은(는) Hell.sh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want."입니다.
확장 프로그램 스크린샷
Set Discord Activity 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It even has a YouTube, Plex, and SoundCloud integration, so you can automatically share what you're watching/listening to on those platforms.
확장 프로그램 기본 정보
이름 | Set Discord Activity |
ID | dlmmhgaeahcfkojednnfghfpinbinicj |
공식 URL | https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj |
설명 | Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want. |
파일 크기 | 24.75 KB |
설치 횟수 | 26,546 |
현재 버전 | 2.10.0 |
최근 업데이트 | 2021-07-02 |
출시 날짜 | 2020-05-05 |
평점 | 3.70/5 총 225 개의 평점 |
개발자 | Hell.sh |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Sainan/Set-Discord-Activity |
도움말 페이지 URL | https://github.com/Sainan/Set-Discord-Activity/issues |
개인정보 보호 정책 페이지 URL | https://hell.sh/privacy |
지원되는 언어 | de,en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "icons": { "128": "icon.png" }, "version": "2.10.0", "author": "Sainan", "minimum_chrome_version": "41", "permissions": [ "storage" ], "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/discord.com\/channels\/*", "https:\/\/ptb.discord.com\/channels\/*", "https:\/\/canary.discord.com\/channels\/*" ], "all_frames": true, "js": [ "discord.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": true, "js": [ "youtube.js", "content_script.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/music.youtube.com\/*" ], "all_frames": true, "js": [ "youtubemusic.js", "content_script.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/soundcloud.com\/*" ], "all_frames": true, "js": [ "soundcloud.js", "content_script.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/app.plex.tv\/desktop", "https:\/\/app.plex.tv\/desktop\/*" ], "all_frames": true, "js": [ "plex.js", "content_script.js" ], "run_at": "document_idle" } ] } |