My Rich Presence

Display what you are currently watching, directly in discord.

My Rich Presence là gì?

My Rich Presence là một tiện ích mở rộng Chrome được phát triển bởi Strukteon, và tính năng chính của nó là "Display what you are currently watching, directly in discord.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng My Rich Presence

Tải xuống các tệp mở rộng My Rich Presence 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

                        Let others on discord see what you are watching/listening to.

No complex configuration required, you just have to install the jar from strukteon.net.

Currently supporting:
  • YouTube

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên My Rich Presence My Rich Presence
ID cgeaniepnccnmoogokikkplihmgmhocl
URL Chính Thức https://chrome.google.com/webstore/detail/my-rich-presence/cgeaniepnccnmoogokikkplihmgmhocl
Mô tả Display what you are currently watching, directly in discord.
Kích Thước Tệp 146 KB
Số Lần Cài Đặt 4,000
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2019-03-29
Ngày Phát Hành 2019-03-25
Đánh Giá 2.63/5 Tổng số 19 Đánh Giá
Nhà Phát Triển Strukteon
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Rich Presence",
    "version": "0.1.2",
    "summary": "Display what you are currently watching, directly in discord.",
    "description": "Display what you are currently watching, directly in discord.",
    "permissions": [
        "http:\/\/localhost:69\/",
        "*:\/\/www.youtube.com\/*",
        "tabs",
        "storage",
        "history"
    ],
    "background": {
        "scripts": [
            "js\/urls.js",
            "js\/socket_connector.js",
            "js\/tab_manager.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/my_rich_presence.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/settings.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/presences\/video\/youtube.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "images\/my_rich_presence.png"
    },
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}