ReplDM

Adds direct messaging functionality to replit.com

ReplDM là gì?

ReplDM là một tiện ích mở rộng Chrome được phát triển bởi Marcus Weinberger, và tính năng chính của nó là "Adds direct messaging functionality to replit.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ReplDM

Tải xuống các tệp mở rộng ReplDM dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ReplDM ReplDM
ID keafnbglbpeinfldadjibfibkaklhceg
URL Chính Thức https://chromewebstore.google.com/detail/repldm/keafnbglbpeinfldadjibfibkaklhceg
Mô tả Adds direct messaging functionality to replit.com
Kích Thước Tệp 724 KB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 0.7.4
Cập Nhật Lần Cuối 2021-03-25
Ngày Phát Hành 2021-03-16
Đánh Giá 4.67/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Marcus Weinberger
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://repl.it/@rafrafraf/chrome-extension
URL Trang Trợ Giúp https://repl.it/@rafrafraf/chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}