ReplDM

Adds direct messaging functionality to replit.com

What is ReplDM?

ReplDM is a Chrome extension developed by Marcus Weinberger, and its main feature is "Adds direct messaging functionality to replit.com".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download ReplDM Extension CRX File

Download ReplDM extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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).                    

Extension Basic Information

Name ReplDM ReplDM
ID keafnbglbpeinfldadjibfibkaklhceg
Official URL https://chromewebstore.google.com/detail/repldm/keafnbglbpeinfldadjibfibkaklhceg
Description Adds direct messaging functionality to replit.com
File Size 724 KB
Installation Count 37
Current Version 0.7.4
Last Updated 2021-03-25
Publish Date 2021-03-16
Rating 4.67/5 Total 9 Ratings
Developer Marcus Weinberger
Email [email protected]
Payment Type free
Extension Website https://repl.it/@rafrafraf/chrome-extension
Help Page URL https://repl.it/@rafrafraf/chrome-extension
Supported Languages 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"
    }
}