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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}