StadiaRPC

Updates Discord rich presence to show what you're playing.

StadiaRPC란 무엇입니까?

StadiaRPC은(는) soap-less에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Updates Discord rich presence to show what you're playing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

StadiaRPC 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        IMPORTANT: Before using, INSTALL THE DISCORD-RPC-EXTENSION CHROME EXTENSION AND DESKTOP APP. YOU MUST HAVE BOTH EXTENSIONS AND THE DESKTOP APPLICATION FOR THIS TO WORK. https://github.com/lolamtisch/Discord-RPC-Extension. 

DISCLAIMER: StadiaRPC is an unofficial extension. The rights to the Stadia trademark and copyrighted images belong to Google LLC. Other assets pertain to developing and publishing parties related to Stadia. If you believe your art/image is being used unfairly, please contact me using the email on the GitHub page below and I will immediately remove it.

StadiaRPC lets all your Discord friends or server mates know what games you're playing on Stadia. To get started, all you need to do is download the StadiaRPC extension, the Discord-RPC extension, AND the Discord-RPC extension app, found above.

Sorry, I know that's a lot of things to download. But after that is done, you'll be showing off your newest Stadia games to all your friends.

If you have any questions or concerns, please see the GitHub page (https://github.com/soap-less/StadiaRPC/) or join the Discord server (https://discord.gg/zU9HFm7).                    

확장 프로그램 기본 정보

이름 StadiaRPC StadiaRPC
ID dmhhgpkmilabgjpdbkinimkihdiobljg
공식 URL https://chrome.google.com/webstore/detail/stadiarpc/dmhhgpkmilabgjpdbkinimkihdiobljg
설명 Updates Discord rich presence to show what you're playing.
파일 크기 150 KB
설치 횟수 1,000
현재 버전 0.3.0
최근 업데이트 2020-05-27
출시 날짜 2020-05-27
평점 4.25/5 총 8 개의 평점
개발자 soap-less
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/soap-less/StadiaRPC/
도움말 페이지 URL https://discord.gg/zU9HFm7
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "StadiaRPC",
    "version": "0.3.0",
    "description": "Updates Discord rich presence to show what you're playing.",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                "https:\/\/stadia.google.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png"
        },
        "default_popup": "popup.html"
    }
}