My Rich Presence

Display what you are currently watching, directly in discord.

Wat is My Rich Presence?

My Rich Presence is een Chrome-extensie ontwikkeld door Strukteon, en de belangrijkste functie is "Display what you are currently watching, directly in discord.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie My Rich Presence

Download My Rich Presence-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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

Basisinformatie over de Extensie

Naam My Rich Presence My Rich Presence
ID cgeaniepnccnmoogokikkplihmgmhocl
Officiële URL https://chrome.google.com/webstore/detail/my-rich-presence/cgeaniepnccnmoogokikkplihmgmhocl
Beschrijving Display what you are currently watching, directly in discord.
Bestandsgrootte 146 KB
Aantal Installaties 4,000
Huidige Versie 0.1.2
Laatst Bijgewerkt 2019-03-29
Publicatiedatum 2019-03-25
Beoordeling 2.63/5 Totaal 19 Beoordelingen
Ontwikkelaar Strukteon
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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]"
        }
    }
}