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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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]"
        }
    }
}