My Rich Presence

Display what you are currently watching, directly in discord.

My Rich Presenceคืออะไร?

My Rich Presence เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Strukteon และคุณลักษณะหลักของมันคือ "Display what you are currently watching, directly in discord."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย My Rich Presence

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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]"
        }
    }
}