ReplDM

Adds direct messaging functionality to replit.com

ما هو ReplDM؟

ReplDM هو إضافة Chrome تم تطويرها بواسطة Marcus Weinberger، والميزة الرئيسية لها هي "Adds direct messaging functionality to replit.com".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة ReplDM

قم بتنزيل ملفات الامتداد ReplDM بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}