My Rich Presence

Display what you are currently watching, directly in discord.

My Rich Presenceとは何ですか?

My Rich PresenceはStrukteonによって開発されたChromeの拡張機能で、その主な機能は「Display what you are currently watching, directly in discord.」です。

拡張機能のスクリーンショット

screenshot

My Rich Presence拡張機能のCRXファイルをダウンロード

My Rich Presence拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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

拡張機能の基本情報

名前 My Rich Presence My Rich Presence
ID cgeaniepnccnmoogokikkplihmgmhocl
公式URL https://chrome.google.com/webstore/detail/my-rich-presence/cgeaniepnccnmoogokikkplihmgmhocl
説明 Display what you are currently watching, directly in discord.
ファイルサイズ 146 KB
インストール数 4,000
現在のバージョン 0.1.2
最終更新日 2019-03-29
公開日 2019-03-25
評価 2.63/5 合計 19 レビュー
開発者 Strukteon
Eメール [email protected]
支払い方法 free
対応言語 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]"
        }
    }
}