ReplDM

Adds direct messaging functionality to replit.com

Cos'è ReplDM?

ReplDM è un'estensione di Chrome sviluppata da Marcus Weinberger, e la sua funzione principale è "Adds direct messaging functionality to replit.com".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ReplDM

Scarica i file di estensione ReplDM 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

                        This modifies content on the website https://replit.com, adding in the capability for direct messaging. It includes a user-friendly interface, and requires you to sign in via replit on first install. Your auth token will be synced across browsers (provided sync is enabled).                    

Informazioni di Base sull'Estensione

Nome ReplDM ReplDM
ID keafnbglbpeinfldadjibfibkaklhceg
URL Ufficiale https://chromewebstore.google.com/detail/repldm/keafnbglbpeinfldadjibfibkaklhceg
Descrizione Adds direct messaging functionality to replit.com
Dimensione del File 724 KB
Conteggio Installazioni 37
Versione Corrente 0.7.4
Ultimo Aggiornamento 2021-03-25
Data di Pubblicazione 2021-03-16
Valutazione 4.67/5 Totale 9 Valutazioni
Sviluppatore Marcus Weinberger
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://repl.it/@rafrafraf/chrome-extension
URL della Pagina di Aiuto https://repl.it/@rafrafraf/chrome-extension
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ReplDM",
    "description": "Adds direct messaging functionality to replit.com",
    "version": "0.7.4",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/repl.it\/*",
                "*:\/\/replit.com\/*"
            ],
            "js": [
                ".\/fontawesome.js",
                ".\/socket.io.js",
                ".\/jquery.min.js",
                "marked.min.js",
                ".\/sanitize-html.js",
                ".\/foreground.js"
            ],
            "css": [
                ".\/fontawesome.css",
                ".\/repldm-page.css"
            ]
        }
    ],
    "options_page": ".\/options.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/repl.it\/*",
        "*:\/\/replit.com\/*"
    ],
    "background": {
        "page": "index.html"
    }
}