StadiaRPC
Updates Discord rich presence to show what you're playing.
StadiaRPC là gì?
StadiaRPC là một tiện ích mở rộng Chrome được phát triển bởi soap-less, và tính năng chính của nó là "Updates Discord rich presence to show what you're playing.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng StadiaRPC
Tải xuống các tệp mở rộng StadiaRPC dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | dmhhgpkmilabgjpdbkinimkihdiobljg |
URL Chính Thức | https://chrome.google.com/webstore/detail/stadiarpc/dmhhgpkmilabgjpdbkinimkihdiobljg |
Mô tả | Updates Discord rich presence to show what you're playing. |
Kích Thước Tệp | 150 KB |
Số Lần Cài Đặt | 1,000 |
Phiên Bản Hiện Tại | 0.3.0 |
Cập Nhật Lần Cuối | 2020-05-27 |
Ngày Phát Hành | 2020-05-27 |
Đánh Giá | 4.25/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | soap-less |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/soap-less/StadiaRPC/ |
URL Trang Trợ Giúp | https://discord.gg/zU9HFm7 |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |