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
官方網址 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
電子郵箱 [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]"
        }
    }
}