ReplDM

Adds direct messaging functionality to replit.com

ReplDM란 무엇입니까?

ReplDM은(는) Marcus Weinberger에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds direct messaging functionality to replit.com"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ReplDM 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 ReplDM ReplDM
ID keafnbglbpeinfldadjibfibkaklhceg
공식 URL https://chromewebstore.google.com/detail/repldm/keafnbglbpeinfldadjibfibkaklhceg
설명 Adds direct messaging functionality to replit.com
파일 크기 724 KB
설치 횟수 37
현재 버전 0.7.4
최근 업데이트 2021-03-25
출시 날짜 2021-03-16
평점 4.67/5 총 9 개의 평점
개발자 Marcus Weinberger
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://repl.it/@rafrafraf/chrome-extension
도움말 페이지 URL https://repl.it/@rafrafraf/chrome-extension
지원되는 언어 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"
    }
}