My Rich Presence

Display what you are currently watching, directly in discord.

Cos'è My Rich Presence?

My Rich Presence è un'estensione di Chrome sviluppata da Strukteon, e la sua funzione principale è "Display what you are currently watching, directly in discord.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione My Rich Presence

Scarica i file di estensione My Rich Presence in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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

Informazioni di Base sull'Estensione

Nome My Rich Presence My Rich Presence
ID cgeaniepnccnmoogokikkplihmgmhocl
URL Ufficiale https://chrome.google.com/webstore/detail/my-rich-presence/cgeaniepnccnmoogokikkplihmgmhocl
Descrizione Display what you are currently watching, directly in discord.
Dimensione del File 146 KB
Conteggio Installazioni 4,000
Versione Corrente 0.1.2
Ultimo Aggiornamento 2019-03-29
Data di Pubblicazione 2019-03-25
Valutazione 2.63/5 Totale 19 Valutazioni
Sviluppatore Strukteon
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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]"
        }
    }
}