My Rich Presence

Display what you are currently watching, directly in discord.

Hvad er My Rich Presence?

My Rich Presence er en Chrome-udvidelse udviklet af Strukteon, og dens hovedfunktion er "Display what you are currently watching, directly in discord.".

Udvidelsesskærmbilleder

screenshot

Download My Rich Presence-udvidelses-CRX-fil

Download My Rich Presence-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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

Grundlæggende oplysninger om udvidelsen

Navn My Rich Presence My Rich Presence
ID cgeaniepnccnmoogokikkplihmgmhocl
Officiel URL https://chrome.google.com/webstore/detail/my-rich-presence/cgeaniepnccnmoogokikkplihmgmhocl
Beskrivelse Display what you are currently watching, directly in discord.
Filstørrelse 146 KB
Antal Installationer 4,000
Nuværende Version 0.1.2
Senest Opdateret 2019-03-29
Udgivelsesdato 2019-03-25
Bedømmelse 2.63/5 Samlet 19 Bedømmelser
Udvikler Strukteon
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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]"
        }
    }
}