My Rich Presence

Display what you are currently watching, directly in discord.

Qu'est-ce que My Rich Presence ?

My Rich Presence est une extension Chrome développée par Strukteon, et sa fonction principale est "Display what you are currently watching, directly in discord.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension My Rich Presence

Téléchargez les fichiers d'extension My Rich Presence au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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

Informations de Base sur l'Extension

Nom My Rich Presence My Rich Presence
ID cgeaniepnccnmoogokikkplihmgmhocl
URL Officiel https://chrome.google.com/webstore/detail/my-rich-presence/cgeaniepnccnmoogokikkplihmgmhocl
Description Display what you are currently watching, directly in discord.
Taille du Fichier 146 KB
Nombre d'Installations 4,000
Version Actuelle 0.1.2
Dernière Mise à Jour 2019-03-29
Date de Publication 2019-03-25
Évaluation 2.63/5 Total 19 Évaluations
Développeur Strukteon
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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]"
        }
    }
}