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